2a29181a90
Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
277 B
Bash
Executable File
7 lines
277 B
Bash
Executable File
#!/usr/bin/env bash
|
||
# 兼容入口:转发到 manage.sh(推荐 curl | bash)
|
||
# curl -fsSL https://git.bz121.com/dekun/eth_hedge_sim/raw/branch/main/deploy/manage.sh | bash
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
||
exec bash "${ROOT}/deploy/manage.sh" "$@"
|