tilde.club/html/build.sh

22 lines
461 B
Bash
Raw Normal View History

2024-03-09 02:25:48 -05:00
#!/bin/sh
cp -r ./public ../dist/public_html
2024-03-09 23:37:33 -05:00
for dir in "turing-machine" "euler-golf" "godel-explorer"; do
mv staticsimponic/$dir ../dist/public_html/$dir
done
2024-03-09 23:29:25 -05:00
cd the-abstraction-engine/
npm install
npm run build
cd ..
cp -r the-abstraction-engine/dist ../dist/public_html/the-abstraction-engine
mkdir -p ../dist/fruitvote
cd fruitvote
go build -o ../../dist/fruitvote/fruitvote
cp start.sh ../dist/fruitvote/start.sh
2024-03-09 23:31:14 -05:00
cd ..
2024-03-09 02:25:48 -05:00
echo "finished building HTML"
2024-03-09 23:29:25 -05:00