mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
5c1a706d6e
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
10 lines
155 B
Bash
Executable file
10 lines
155 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
echo '>> Removing all .min.css files'
|
|
find content/ -name '*.min.css' -type f -exec rm -rfv {} \;
|
|
}
|
|
|
|
main "$@"
|