diff options
author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-09 21:37:33 -0700 |
---|---|---|
committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-09 21:37:33 -0700 |
commit | d2e27afdace9850bdc2dfcb3eaa9d07529021772 (patch) | |
tree | 92f5ef93eb6b6289e6a3715256b3163a75cdf78c | |
parent | bc54a33c489019303b0d94e21e00778acb1e7183 (diff) | |
download | tilde.club-d2e27afdace9850bdc2dfcb3eaa9d07529021772.tar.gz tilde.club-d2e27afdace9850bdc2dfcb3eaa9d07529021772.zip |
fix html build
-rwxr-xr-x | html/build.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/html/build.sh b/html/build.sh index 6bc3571..ec60003 100755 --- a/html/build.sh +++ b/html/build.sh @@ -1,11 +1,9 @@ #!/bin/sh -mkdir -p ../dist/public_html - cp -r ./public ../dist/public_html -mv staticsimponic/turing-machine ../dist/public_html -mv staticsimponic/euler-golf ../dist/public_html -mv staticsimponic/godel-explorer ../dist/public_html +for dir in "turing-machine" "euler-golf" "godel-explorer"; do + mv staticsimponic/$dir ../dist/public_html/$dir +done cd the-abstraction-engine/ npm install |