From 2570c0ae40a5164729f7478514c6ac540b4ef403 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Sun, 12 May 2024 14:04:14 -0400 Subject: [PATCH] ci: add missing `"` to pid expansion addendum to #4358. --- deployments/scripts/smoke-summoner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/scripts/smoke-summoner.sh b/deployments/scripts/smoke-summoner.sh index 1bd527f875..18dc51de4c 100755 --- a/deployments/scripts/smoke-summoner.sh +++ b/deployments/scripts/smoke-summoner.sh @@ -123,7 +123,7 @@ echo "Starting phase 2 run..." cargo run --quiet --release --bin summonerd -- start --phase 2 --storage-dir /tmp/summonerd --fvk $SUMMONER_FVK --node http://127.0.0.1:8080 --bind-addr 127.0.0.1:8082 & phase2_pid="$!" # If script ends early, ensure phase 2 is halted. -trap 'kill -9 "$cometbft_pid" "$pd_pid" "$phase1_pid" "$phase2_pid' EXIT INT +trap 'kill -9 "$cometbft_pid" "$pd_pid" "$phase1_pid" "$phase2_pid"' EXIT INT echo "Phase 2 contributions..." cargo run --quiet --release --bin pcli -- --home /tmp/account1 ceremony contribute --coordinator-url http://127.0.0.1:8082 --coordinator-address $SUMMONER_ADDRESS --phase 2 --bid 10penumbra