Skip to content
Snippets Groups Projects
Commit baf75af9 authored by EricFromCanada's avatar EricFromCanada
Browse files

brew: prepend shims to PATH used by _system

Ensures `system` and `safe_system` use brewed git if available.
parent 57f7b8a8
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ begin
homebrew_path = PATH.new(ENV["HOMEBREW_PATH"])
# Add SCM wrappers.
path.append(HOMEBREW_SHIMS_PATH/"scm")
homebrew_path.append(HOMEBREW_SHIMS_PATH/"scm")
path.prepend(HOMEBREW_SHIMS_PATH/"scm")
homebrew_path.prepend(HOMEBREW_SHIMS_PATH/"scm")
ENV["PATH"] = path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment