From e682997b3dfcb584000b470c578d776bed5a5028 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Mon, 29 Dec 2014 12:19:45 -0500 Subject: [PATCH] Remove erroneous . from wget commands wget always downloads into current directory --- cluster/aws/templates/download-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/aws/templates/download-release.sh b/cluster/aws/templates/download-release.sh index e24e82063e6..9859a03f29c 100644 --- a/cluster/aws/templates/download-release.sh +++ b/cluster/aws/templates/download-release.sh @@ -21,10 +21,10 @@ # master and run. echo "Downloading binary release tar ($SERVER_BINARY_TAR_URL)" -wget "$SERVER_BINARY_TAR_URL" . +wget "$SERVER_BINARY_TAR_URL" echo "Downloading binary release tar ($SALT_TAR_URL)" -wget "$SALT_TAR_URL" . +wget "$SALT_TAR_URL" echo "Unpacking Salt tree" rm -rf kubernetes