Skip to content

Commit 4ace485

Browse files
author
Pablo Chacin
committed
Fix identification of OS platform
1 parent 8f5e2d6 commit 4ace485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/fetch_ext_bins.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ k8s_version=1.11.0
3131
goarch=amd64
3232
goos="unknown"
3333

34-
if [[ "$OSTYPE" == *"linux" ]]; then
34+
if [[ "$OSTYPE" == "linux"* ]]; then
3535
goos="linux"
3636
elif [[ "$OSTYPE" == "darwin"* ]]; then
3737
goos="darwin"

0 commit comments

Comments
 (0)