-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config_check.rb issue with Git #48
Comments
@XhmikosR What's the location for your installed Git? |
@emachnic: the default one |
@XhmikosR I've tried adding a check for it but even with the path correct, it doesn't seem to work when called from the |
@emachnic: you mean the ssh-keygen issue? Because there's a built in way to do this, see /cmd/start-ssh-agent.cmd. |
@XhmikosR Every get this sorted? I just ran railsinstaller.exe and declined to include GIT because I already had it. I'm getting your same error message. Thanks! ruby 2.1.6p336 |
@danbrellis Still getting this same error on Windows 10, no solution found yet. I too decided to decline Git install because I already have it installed.. |
I met same problem with 3.3.0 when starting Command Prompt with Ruby and Rails.
I am very happy if user config is prior to the default config like below.
|
Got exactly the same issue as sho-h with the 3.3.0 installer. (Running windows 10) |
@sho-h Have you tried testing that change on your local computer? |
To find GIT on global environment I modified #<— just above Config = line
gitpath = "\"" + `where git`.strip! + "\""
gitfound = gitpath.index('git.exe')
if gitfound.nil?
gitpath = File.join(File.dirname(File.dirname($0)), "Git", "bin", "git.exe")
end
Config =
{
#just modify the :git
:git => gitpath,
#leave the other unmodified
}
#ignore this comments |
Pasting from the IRC since I'm lazy :P
The text was updated successfully, but these errors were encountered: