Merge pull request #2154 from karl-gustav/patch-1

Fix install_kustomize.sh so that it works on alpine linux
This commit is contained in:
Jeff Regan
2020-01-28 09:31:29 -08:00
committed by GitHub

View File

@@ -26,9 +26,9 @@ trap cleanup EXIT
pushd $tmpDir >& /dev/null
opsys=windows
if [[ "$OSTYPE" == "linux-gnu" ]]; then
if [[ "$OSTYPE" == linux* ]]; then
opsys=linux
elif [[ "$OSTYPE" == "darwin"* ]]; then
elif [[ "$OSTYPE" == darwin* ]]; then
opsys=darwin
fi