scroll/bin/deno.sh

5 lines
186 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
PARENT_DIR="$(dirname "$(realpath "$0")")"
SCROLL="$(realpath "${PARENT_DIR}/../src/scroll.ts")"
deno run --allow-all --deny-hrtime "${SCROLL}" "$@"