Skip to content

Commit

Permalink
ci: add missing " to pid expansion
Browse files Browse the repository at this point in the history
addendum to #4358.
  • Loading branch information
cratelyn committed May 12, 2024
1 parent b168b57 commit 2570c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployments/scripts/smoke-summoner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2570c0a

Please sign in to comment.