6 lines
160 B
Bash
6 lines
160 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
PARENT_DIR="$(dirname "$(realpath "$0")")"
|
||
|
SCROLL="$(realpath "${PARENT_DIR}/../src/scroll.ts")"
|
||
|
bun run "${SCROLL}" "$@"
|