5 lines
146 B
Bash
Executable file
5 lines
146 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec bun run "$repo_root/scripts/deploy.ts" "$@"
|