From cfea2c3aa3e8b1eb5d13506f795f21e79f089de6 Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Thu, 23 Feb 2023 11:18:08 +0200 Subject: [PATCH] correct variable names --- tests/nym-client-binary-check.sh | 2 +- tests/nym-gateway-binary-check.sh | 2 +- tests/nym-mixnode-binary-check.sh | 2 +- tests/nym-network-requester-binary-check.sh | 2 +- tests/nym-socks-5-binary-check.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/nym-client-binary-check.sh b/tests/nym-client-binary-check.sh index 2454019db1..111160768b 100755 --- a/tests/nym-client-binary-check.sh +++ b/tests/nym-client-binary-check.sh @@ -6,7 +6,7 @@ set -e PWD="../" RELEASE_DIRECTORY="target/release" -VERSION_NUMBER=$1 +RELEASE_VERSION_NUMBER=$1 OUTPUT=$(for i in {1..8}; do echo -n $(($RANDOM % 10)); done) ID="test-${OUTPUT}" BINARY_NAME="nym-client" diff --git a/tests/nym-gateway-binary-check.sh b/tests/nym-gateway-binary-check.sh index 390fe9343f..19a0ce87b0 100755 --- a/tests/nym-gateway-binary-check.sh +++ b/tests/nym-gateway-binary-check.sh @@ -6,7 +6,7 @@ set -e PWD="../" RELEASE_DIRECTORY="target/release" -VERSION_NUMBER=$1 +RELEASE_VERSION_NUMBER=$1 WALLET_ADDRESS_CONST=n1435n84se65tn7yv536am0sfvng4yyrwj7thhxr MOCK_HOST="1.2.3.4" RANDOM_ID=$(for i in {1..8}; do echo -n $(($RANDOM % 10)); done) diff --git a/tests/nym-mixnode-binary-check.sh b/tests/nym-mixnode-binary-check.sh index e7ed4a00d3..6b32f76be8 100755 --- a/tests/nym-mixnode-binary-check.sh +++ b/tests/nym-mixnode-binary-check.sh @@ -11,7 +11,7 @@ RANDOM_ID=$(for i in {1..8}; do echo -n $(($RANDOM % 10)); done) ID="test-${RANDOM_ID}" BINARY_NAME="nym-mixnode" -echo "the version number is ${VERSION_NUMBER} to be installed from github" +echo "the version number is ${RELEASE_VERSION_NUMBER} to be installed from github" # install the current release binary # so this is dependant on running on a linux machine for the time being diff --git a/tests/nym-network-requester-binary-check.sh b/tests/nym-network-requester-binary-check.sh index 38c3965fc3..4ef0afdec7 100755 --- a/tests/nym-network-requester-binary-check.sh +++ b/tests/nym-network-requester-binary-check.sh @@ -6,7 +6,7 @@ set -e PWD="../" RELEASE_DIRECTORY="target/release" -VERSION_NUMBER=$1 +RELEASE_VERSION_NUMBER=$1 RANDOM_ID=$(for i in {1..8}; do echo -n $(($RANDOM % 10)); done) ID="test-${RANDOM_ID}" BINARY_NAME="nym-network-requester" diff --git a/tests/nym-socks-5-binary-check.sh b/tests/nym-socks-5-binary-check.sh index 6e288cf5bf..59ef083f03 100755 --- a/tests/nym-socks-5-binary-check.sh +++ b/tests/nym-socks-5-binary-check.sh @@ -6,7 +6,7 @@ set -e PWD="../" RELEASE_DIRECTORY="target/release" -VERSION_NUMBER=$1 +RELEASE_VERSION_NUMBER=$1 MOCK_SERVICE_PROVIDER="36cUqdggtdXixZhmXfyZm3Dep3Q5QsKVPotMrVSmS4oY.ZCCAdFPwPNSTtUMYveA62ttEFe8FDiB3cdheWHtCytX@6Lnxj9vD2YMtSmfe8zp5RBtj1uZLYQAFRxY9q7ANwrZz" RANDOM_ID=$(for i in {1..8}; do echo -n $(($RANDOM % 10)); done) ID="test-${RANDOM_ID}"