okimeter/build.sh
2024-04-12 17:34:57 +02:00

9 lines
142 B
Bash
Executable file

#!/bin/sh
set -e
cd "$(dirname "$(realpath "$0")")"
MAIN="main.ts"
ARGS="--allow-net"
BIN="okimeter"
deno compile "$ARGS" -o "$BIN" "$MAIN"