Update build.sh

This commit is contained in:
2026-04-02 22:37:29 -04:00
parent d119596a69
commit 64fa013be6
+6 -6
View File
@@ -34,12 +34,12 @@ do
then
cmd='python balloon.py'
files=$(
files=($(
find src -path "src/pages/*"\
-type f\
-name "*.html"\
-print
)
))
target_ext='.html'
@@ -49,13 +49,13 @@ do
then
cmd='sass --update'
files=$(
files=($(
find src -path "src/styles/*"\
-prune\
-type f\
-name "*.scss"\
-print
)
))
target_ext='.css'
@@ -72,12 +72,12 @@ do
then
cmd='cwebp -z 9 -m 6'
files=$(
files=($(
find src -path "src/img/*"\
-type f\
-not -name "favicon.png"\
-print
)
))
target_ext='.webp'
target_opt='-o'