You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.
rhc is looking for git.exe in only a handful of locations ("Program Files", "Program Files (x86)", "Progra~1" and drive root) of mapped drives. If git is installed in some other location, even when that location is on the PATH, rhc gives the error "You do not have git installed". In addition to checking these predefined locations rhc should check the directories in the PATH environment variable.
Inserting the following into helpers.rb worked for me:
begin
ENV['PATH'].split(";").each do |item|
base_path << item
end
end
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
rhc is looking for git.exe in only a handful of locations ("Program Files", "Program Files (x86)", "Progra~1" and drive root) of mapped drives. If git is installed in some other location, even when that location is on the PATH, rhc gives the error "You do not have git installed". In addition to checking these predefined locations rhc should check the directories in the PATH environment variable.
Inserting the following into helpers.rb worked for me:
The text was updated successfully, but these errors were encountered: