diff options
Diffstat (limited to 'test/security/k8s/tools/dublin/get_rke.sh')
-rwxr-xr-x | test/security/k8s/tools/dublin/get_rke.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/security/k8s/tools/dublin/get_rke.sh b/test/security/k8s/tools/dublin/get_rke.sh index 63ef8c77e..01dd20a96 100755 --- a/test/security/k8s/tools/dublin/get_rke.sh +++ b/test/security/k8s/tools/dublin/get_rke.sh @@ -33,7 +33,7 @@ URL="https://github.com/rancher/rke/releases/download/${VERSION}/${BINARY}" # Prerequistes wget "$URL" -chmod +x "${BINARY}" +chmod +x "$BINARY" # Installation -mv "${BINARY}" "/usr/local/bin/${BINARY%%_*}" # this also renames binary to "rke" +mv "$BINARY" "/usr/local/bin/${BINARY%%_*}" # this also renames binary to "rke" |