tilde.club/html/build.sh
Lizzy Hunt 2cc4bd0663
All checks were successful
continuous-integration/drone/push Build is passing
fix dist path for fruitvote
2024-03-09 21:53:37 -07:00

22 lines
455 B
Bash
Executable File

#!/bin/sh
cp -r ./public ../dist/public_html
for dir in "turing-machine" "euler-golf" "godel"; do
mv staticsimponic/$dir ../dist/public_html/$dir
done
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
cd ..
echo "finished building HTML"