Skip to content

Commit

Permalink
Merge pull request #1650 from nwinkler/git-completion-darwin-fix
Browse files Browse the repository at this point in the history
Fixed OS comparison for macOS
  • Loading branch information
nwinkler committed Aug 10, 2020
2 parents 24ed7c6 + 230bafd commit 9cc9bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completion/available/git.completion.bash
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

# 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"
return 0
fi
Expand Down

0 comments on commit 9cc9bd5

Please sign in to comment.