18 lines
227 B
Bash
18 lines
227 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
files=(
|
||
|
"manifest.webmanifest"
|
||
|
"index.html"
|
||
|
"*.css*"
|
||
|
"*.png"
|
||
|
)
|
||
|
|
||
|
echo -n "Remove all build files in 'public'... "
|
||
|
|
||
|
for file in "${files[@]}"
|
||
|
do
|
||
|
rm ./public/$file &> /dev/null
|
||
|
done
|
||
|
|
||
|
echo "Complete!"
|