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