Remove erroneous . from wget commands

wget always downloads into current directory
This commit is contained in:
Justin Santa Barbara 2014-12-29 12:19:45 -05:00
parent a99bb4823b
commit e682997b3d

View File

@ -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