11 lines
206 B
Bash
Executable File
11 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
if [[ -f "$ROOT/dist/cli.js" ]]; then
|
|
exec node "$ROOT/dist/cli.js" "$@"
|
|
else
|
|
exec npx -y tsx "$ROOT/src/cli.ts" "$@"
|
|
fi
|