mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +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
|
pushd $tmpDir >& /dev/null
|
||||||
|
|
||||||
opsys=windows
|
opsys=windows
|
||||||
if [[ "$OSTYPE" == "linux-gnu" ]]; then
|
if [[ "$OSTYPE" == linux* ]]; then
|
||||||
opsys=linux
|
opsys=linux
|
||||||
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
elif [[ "$OSTYPE" == darwin* ]]; then
|
||||||
opsys=darwin
|
opsys=darwin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user