mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 09:39:25 +01:00
8441a4e6ac
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
10 lines
186 B
Bash
Executable file
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 "$@"
|