Skip to content

Commit

Permalink
possible runtime generation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qdrvm-ci committed Oct 11, 2024
1 parent 94e2f16 commit 8e6e459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zombienet/precompile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ undying-collator export-genesis-wasm > $DIR/undying-collator.json
polkadot-parachain export-genesis-wasm > $DIR/polkadot-parachain.json
polkadot build-spec --chain westend-local --raw > $DIR/westend-local.json

for id in {2000..2002}
for id in $(seq 2000 2002)
do
polkadot-parachain export-genesis-wasm --chain glutton-westend-local-${id} \
> $DIR/glutton-parachain-${id}.json
> "${DIR}/glutton-parachain-${id}.json"
done

kagome --tmp --chain $DIR/rococo-local.json \
Expand Down

0 comments on commit 8e6e459

Please sign in to comment.