From 6dbb6c7fe2e9660e4773899d4235a0156f75e293 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 9 Jul 2019 15:44:04 -0700 Subject: [PATCH] Fix always passing in remote filename, even if no accounts file (#4993) (#4994) * Fix always passing in remote filename, even if no accounts file * typo (cherry picked from commit d11122308550dc9e46eec80ece444f2d6ebb2411) --- net/net.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/net.sh b/net/net.sh index 31e711fe0c..69445a1e50 100755 --- a/net/net.sh +++ b/net/net.sh @@ -95,7 +95,7 @@ failOnValidatorBootupFailure=true genesisOptions= numFullnodesRequested= externalPrimordialAccountsFile= -remoteExternalPrimordialAccountsFile=/tmp/external-primodial-accounts.yml +remoteExternalPrimordialAccountsFile= stakeNodesInGenesisBlock= command=$1 @@ -122,6 +122,7 @@ while [[ -n $1 ]]; do shift 2 elif [[ $1 = --external-accounts-file ]]; then externalPrimordialAccountsFile="$2" + remoteExternalPrimordialAccountsFile=/tmp/external-primordial-accounts.yml shift 2 else usage "Unknown long option: $1"