9 lines
294 B
Bash
Executable File
9 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
for htmlfile in `cd build && find . -name "*.html"`; do
|
|
htmlmin "build/$htmlfile" > "../Volker-Weissmann.github.io/$htmlfile"
|
|
done
|
|
|
|
for cssfile in `cd build && find . -name "*.css"`; do
|
|
cat "build/$cssfile" | python -mrcssmin > "../Volker-Weissmann.github.io/$cssfile"
|
|
done
|