From 230bafd0d1e4a48d92e779f16a2cc756e4b505d5 Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Mon, 10 Aug 2020 09:06:36 +0200 Subject: [PATCH] Fixed OS comparison for macOS This was always failing on macOS instead of working there... See #1635 for the original commit that introduced this issue. --- completion/available/git.completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion/available/git.completion.bash b/completion/available/git.completion.bash index 9c077451..0020ad1b 100644 --- a/completion/available/git.completion.bash +++ b/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