9 lines
150 B
Bash
Executable file
9 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
MAIN="src/okimeter.ts"
|
|
ARGS="--allow-net"
|
|
BIN="okimeter"
|
|
|
|
deno compile "$ARGS" -o "$BIN" "$MAIN"
|