Github action support #2

Merged
david merged 10 commits from actions into main 2025-04-03 19:44:25 -07:00
2 changed files with 10 additions and 13 deletions
Showing only changes of commit fd6ece4f74 - Show all commits

13
dev.sh
View File

@ -1,13 +0,0 @@
#!/bin/bash
sassc css/style.scss css/style.css
python3 -m http.server 8080 &
# Keypress loop
while true; do
read -n 1 -s key
if [[ $key == "r" ]]; then
echo -e "\nRecompiling SCSS..."
sassc css/style.scss css/style.css && echo "Done."
fi
done

View File

@ -1,3 +1,13 @@
#!/bin/bash #!/bin/bash
sassc css/style.scss css/style.css sassc css/style.scss css/style.css
python3 -m http.server 8080 & python3 -m http.server 8080 &
# Keypress loop
while true; do
read -n 1 -s key
if [[ $key == "r" ]]; then
echo -e "\nRecompiling SCSS..."
sassc css/style.scss css/style.css && echo "Done."
fi
done