From 3bbb68f92d8a30bd0fbce1521969bdd26c0008b7 Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Fri, 17 Nov 2023 10:07:49 -0300 Subject: [PATCH] fix logic --- javascript/packages/orchestrator/src/configGenerator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/packages/orchestrator/src/configGenerator.ts b/javascript/packages/orchestrator/src/configGenerator.ts index 2ad2fa290..85975f97f 100644 --- a/javascript/packages/orchestrator/src/configGenerator.ts +++ b/javascript/packages/orchestrator/src/configGenerator.ts @@ -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}`; } @@ -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}`; }