scroll/bin/tsx.sh
Timothy J. Warren 8c54ceb104
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Add shell scripts to run without just, fix the issue with bun and tsx failing to exit
2024-07-12 15:33:03 -04:00

7 lines
221 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
PARENT_DIR="$(dirname "$(realpath "$0")")"
TSX="$(realpath "${PARENT_DIR}/../node_modules/.bin/tsx")"
SCROLL="$(realpath "${PARENT_DIR}/../src/scroll.ts")"
"${TSX}" "${SCROLL}" "$@";