mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 12:18:11 +00:00
35 lines
763 B
Bash
Executable File
35 lines
763 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
profile_path="${1:-$HOME/.openclaw-testbox-live.profile}"
|
|
helper_path="${2:-$HOME/.local/bin/openclaw-testbox-env}"
|
|
quoted_profile_path="$(printf "%q" "$profile_path")"
|
|
|
|
mkdir -p "$(dirname "$helper_path")"
|
|
|
|
bash scripts/ci-hydrate-live-auth.sh "$profile_path"
|
|
|
|
cat >"$helper_path" <<SH
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
default_profile_path=$quoted_profile_path
|
|
profile_path="\${OPENCLAW_TESTBOX_PROFILE_FILE:-\$default_profile_path}"
|
|
if [[ ! -f "\$profile_path" ]]; then
|
|
echo "Missing Testbox provider env profile: \$profile_path" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -a
|
|
# shellcheck disable=SC1090
|
|
source "\$profile_path"
|
|
set +a
|
|
|
|
if [[ "\$#" -eq 0 ]]; then
|
|
exec "\${SHELL:-/bin/bash}"
|
|
fi
|
|
|
|
exec "\$@"
|
|
SH
|
|
chmod 700 "$helper_path"
|