mirror of
https://github.com/theniceboy/.config.git
synced 2026-04-12 13:35:17 +08:00
12 lines
244 B
Bash
Executable file
12 lines
244 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$HOME/.config/agent-tracker"
|
|
BIN="$ROOT/bin/agent"
|
|
|
|
if [[ ! -x "$BIN" ]]; then
|
|
echo "agent binary not found at $BIN; run ~/.config/agent-tracker/install.sh first" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec "$BIN" "$@"
|