6 lines
138 B
Bash
Executable File
6 lines
138 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
cd client || exit -1
|
|
rm -f stylesheets/index.css
|
|
find app -regextype posix-egrep -regex ".*\.(css)$" -exec rm -f {} \;
|