Can't run bundle update on Windows

前端 未结 4 1769
星月不相逢
星月不相逢 2020-12-19 18:46

Whenever I run bundle update or bundle install on Windows 8.1 I can\'t update/install gems from github. I can install other gems like uglifier, but it doesn\'t work for gith

4条回答
  •  情歌与酒
    2020-12-19 19:24

    Are you running a pre-release version of Bundler? This commit might be related to your problem; it looks like earlier versions of Bundler scan your %PATH% for "git", but not "git.exe".

    The easiest solution would be to backport bundler to 1.3.5:

    gem uninstall bundler
    gem install bundler
    

提交回复
热议问题