mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 08:20:59 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user