Spaces:
Runtime error
Runtime error
File size: 223 Bytes
3436bdd | 1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
USECASE="${1:-migration_brief}"
GOAL="${2:-}"
"$ROOT/scripts/build_hotgraph.sh"
"$ROOT/scripts/generate_control_packet.sh" "$USECASE" "$GOAL"
|