diff --git a/tests/nym-client-binary-check.sh b/tests/nym-client-binary-check.sh index cb15f71037..2454019db1 100755 --- a/tests/nym-client-binary-check.sh +++ b/tests/nym-client-binary-check.sh @@ -18,7 +18,7 @@ cd ${PWD}${RELEASE_DIRECTORY} # install the current release binary # so this is dependant on running on a linux machine for the time being -curl -L https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME} -o $BINARY_NAME +curl -L "https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME}" -o $BINARY_NAME chmod u+x $BINARY_NAME #---------------------------------------------------------------------------------------------------------- diff --git a/tests/nym-gateway-binary-check.sh b/tests/nym-gateway-binary-check.sh index 344986605a..9205164261 100755 --- a/tests/nym-gateway-binary-check.sh +++ b/tests/nym-gateway-binary-check.sh @@ -20,7 +20,7 @@ cd ${PWD}${RELEASE_DIRECTORY} # install the current release binary # so this is dependant on running on a linux machine for the time being -curl -L https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME} -o $BINARY_NAME +curl -L "https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME}" -o $BINARY_NAME chmod u+x $BINARY_NAME #-------------------------------------- diff --git a/tests/nym-network-requester-binary-check.sh b/tests/nym-network-requester-binary-check.sh index 0ee1d55d65..38c3965fc3 100755 --- a/tests/nym-network-requester-binary-check.sh +++ b/tests/nym-network-requester-binary-check.sh @@ -17,7 +17,7 @@ cd ${PWD}${RELEASE_DIRECTORY} # we have now the bundled the client into the network requester, more a less the same output as the client -curl -L https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME} -o $BINARY_NAME +curl -L "https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME}" -o $BINARY_NAME chmod u+x $BINARY_NAME #---------------------------------------------------------------------------------------------------------- diff --git a/tests/nym-socks-5-binary-check.sh b/tests/nym-socks-5-binary-check.sh index c3d5d38266..6e288cf5bf 100755 --- a/tests/nym-socks-5-binary-check.sh +++ b/tests/nym-socks-5-binary-check.sh @@ -19,7 +19,7 @@ cd ${PWD}${RELEASE_DIRECTORY} # install the current release binary # so this is dependant on running on a linux machine for the time being -curl -L https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME} -o $BINARY_NAME +curl -L "https://github.com/nymtech/nym/releases/download/nym-binaries-${RELEASE_VERSION_NUMBER}/${BINARY_NAME}" -o $BINARY_NAME chmod u+x $BINARY_NAME #----------------------------------------------------------------------------------------------------------