Files
crank/scripts/authenticated-product-smoke.sh
T
github-ops 8096502bda
Deploy / deploy (push) Successful in 29s
CI / Rust Checks (push) Successful in 4m50s
CI / UI Checks (push) Successful in 5s
CI / Deployment Manifests (push) Successful in 2s
CI / Frontend E2E (push) Successful in 4m13s
Add deterministic product smoke
2026-06-20 18:07:57 +00:00

13 lines
280 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if [[ $# -lt 1 ]]; then
echo "usage: $0 <base-url>" >&2
echo "example: $0 https://crank.example.com" >&2
exit 64
fi
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
python3 "$SCRIPT_DIR/authenticated-product-smoke.py" "$@"