From 03bf5c3c75a975d50791ae5a67e78c03bd0c8c47 Mon Sep 17 00:00:00 2001 From: gbayasgalan <73820006+gbayasgalan@users.noreply.github.com> Date: Wed, 4 Dec 2024 20:36:58 +0100 Subject: [PATCH] github branch fix (#2134) * fix: github branch * package.json version increament --- launcher/src/backend/NodeConnection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/backend/NodeConnection.js b/launcher/src/backend/NodeConnection.js index dc6012eea..6fc30380e 100755 --- a/launcher/src/backend/NodeConnection.js +++ b/launcher/src/backend/NodeConnection.js @@ -254,10 +254,10 @@ export class NodeConnection { `mkdir -p "${this.installationDirectory}/ansible" && cd "${this.installationDirectory}/ansible" && git init && - git remote add -f ethereum-node https://github.com/gbayasgalan/ethereum-node.git && + git remote add -f ethereum-node https://github.com/stereum-dev/ethereum-node.git && git config core.sparseCheckout true && echo 'controls' >> .git/info/sparse-checkout && - git checkout "devnet"` + git checkout ${global.branch ? global.branch : commit}` ); } catch (err) { log.error("can't install ansible roles", err);