Skip to content

Commit

Permalink
Merge pull request #1470 from dcharbonnier/patch-2
Browse files Browse the repository at this point in the history
detect alpine system
  • Loading branch information
solomonope authored Dec 30, 2019
2 parents b244c8e + 8effeba commit 6d4b742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ GARDEN_VERSION=$(curl -sL https://github.com/garden-io/garden/releases/latest -H
if [ "$(uname -s)" = "Darwin" ]; then
OS=macos
else
OS=linux
OS=`ldd 2>&1|grep musl >/dev/null && echo "alpine" || echo "linux"`
fi
PLATFORM=${OS}-amd64

Expand Down Expand Up @@ -80,4 +80,4 @@ echo ""
echo " export PATH=\$PATH:\$HOME/.garden/bin"
echo ""
echo "Head over to our Quick Start guide for next steps: https://docs.garden.io/quick-start"
echo ""
echo ""

0 comments on commit 6d4b742

Please sign in to comment.