ari.lt/scripts/cleancss.sh
Ari Archer 8441a4e6ac Improve min* scripts, add a new subdomain: https://etc.ari-web.xyz/
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-10-01 02:24:46 +03:00

10 lines
186 B
Bash
Executable file

#!/usr/bin/env sh
set -e
main() {
echo '>> Removing all .min.css files'
find content/ -not -ipath "./node_modules/*" -name '*.min.css' -type f -exec rm -rfv {} \;
}
main "$@"