7 lines
116 B
Bash
Executable file
7 lines
116 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
mkdir -p bin
|
|
|
|
deno compile -o bin/simulation src/simulation.ts
|