slige/slige-build-run-all.sh

26 lines
247 B
Bash
Raw Permalink Normal View History

2024-12-15 00:07:36 +01:00
#!/bin/bash
set -e
FILE_FULL_PATH=$(readlink -f $1)
cd runtime
make
cd ..
cd web/public
deno task bundle
cd ../..
2024-12-15 03:07:33 +01:00
set +e
fuser -k 13370/tcp
set -e
2024-12-15 00:07:36 +01:00
./runtime/build/sliger &
cd web
deno run --allow-net --allow-read main.ts $FILE_FULL_PATH