Commit e682997b authored by Justin Santa Barbara's avatar Justin Santa Barbara

Remove erroneous . from wget commands

wget always downloads into current directory
parent a99bb482
...@@ -21,10 +21,10 @@ ...@@ -21,10 +21,10 @@
# master and run. # master and run.
echo "Downloading binary release tar ($SERVER_BINARY_TAR_URL)" 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)" echo "Downloading binary release tar ($SALT_TAR_URL)"
wget "$SALT_TAR_URL" . wget "$SALT_TAR_URL"
echo "Unpacking Salt tree" echo "Unpacking Salt tree"
rm -rf kubernetes rm -rf kubernetes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment