Merge pull request #3589 from sjackman/shims-scm

shims/scm/git: Fix the search for brewed git
This commit is contained in:
Mike McQuaid 2017-12-21 17:49:18 +00:00 committed by GitHub
commit bd471d6b9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,6 +92,9 @@ case "$(lowercase "$SCM_FILE")" in
;;
esac
brew_version="$(quiet_safe_cd "$SCM_DIR/../../../../../bin" && pwd -P)/$SCM_FILE"
safe_exec "$brew_version" "$@"
brew_version="$(quiet_safe_cd "$SCM_DIR/../../../../bin" && pwd -P)/$SCM_FILE"
safe_exec "$brew_version" "$@"