Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Fix curl output
Browse files Browse the repository at this point in the history
  • Loading branch information
lmakarov committed Jun 3, 2016
1 parent 7c0b41b commit c1eb858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/presetup-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if [[ "$B2D_INSTALL_MODE" == "full" ]] || [[ "$B2D_INSTALL_MODE" == "docker" ]]
sudo rm -f /usr/local/bin/docker >/dev/null 2>&1 || true
# Install docker
echo-green "Installing docker cli v${DOCKER_VERSION}..."
curl -sSL "https://get.docker.com/builds/$(uname -s)/$(uname -m)/docker-$DOCKER_VERSION.tgz"
curl -sSL -O "https://get.docker.com/builds/$(uname -s)/$(uname -m)/docker-$DOCKER_VERSION.tgz"
tar zxf docker-$DOCKER_VERSION.tgz
sudo mv docker/* /usr/local/bin
rm -rf docker-$DOCKER_VERSION*
Expand Down
2 changes: 1 addition & 1 deletion scripts/presetup-win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [[ "$B2D_INSTALL_MODE" == "full" ]] || [[ "$B2D_INSTALL_MODE" == "docker" ]]
rm -f /usr/local/bin/docker >/dev/null 2>&1 || true
# Install Docker
echo-green "Installing docker cli v${DOCKER_VERSION}..."
curl -sSL https://get.docker.com/builds/Windows/i386/docker-$DOCKER_VERSION.zip
curl -sSL -O https://get.docker.com/builds/Windows/i386/docker-$DOCKER_VERSION.zip
unzip docker-$DOCKER_VERSION.zip
mv docker/* /usr/local/bin
rm -rf docker-$DOCKER_VERSION*
Expand Down

0 comments on commit c1eb858

Please sign in to comment.