Skip to content

Commit

Permalink
fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Nov 17, 2023
1 parent dec3427 commit 3bbb68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/packages/orchestrator/src/configGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export async function generateNetworkSpec(
// https://github.com/paritytech/polkadot-sdk/pull/2370
// and the jobs tha use a previous version of the collators reach those fixes.
computedStateCommand += `${
isCumulusBased ? " >" : ""
isCumulusBased ? "" : " >"
} {{CLIENT_REMOTE_DIR}}/${GENESIS_STATE_FILENAME}`;
}

Expand Down Expand Up @@ -387,7 +387,7 @@ export async function generateNetworkSpec(
// https://github.com/paritytech/polkadot-sdk/pull/2370
// and the jobs tha use a previous version of the collators reach those fixes.
computedWasmCommand += `${
isCumulusBased ? " >" : ""
isCumulusBased ? "" : " >"
} {{CLIENT_REMOTE_DIR}}/${GENESIS_WASM_FILENAME}`;
}

Expand Down

0 comments on commit 3bbb68f

Please sign in to comment.