Merge pull request #1650 from nwinkler/git-completion-darwin-fix
Fixed OS comparison for macOSpull/1651/head
commit
9cc9bd5932
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Only operate on MacOS since there are no linux paths
|
# Only operate on MacOS since there are no linux paths
|
||||||
if [[ "$(uname -s)" == 'Darwin' ]] ; then
|
if [[ "$(uname -s)" != 'Darwin' ]] ; then
|
||||||
_log_warning "unsupported operating system - only 'Darwin' is supported"
|
_log_warning "unsupported operating system - only 'Darwin' is supported"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue