-
Notifications
You must be signed in to change notification settings - Fork 16
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
Issue with travis caching and ruby 2.2.1-3 #28
Comments
Related to travis-ci/travis-ci#4822 |
Working around cbeer/engine_cart#28
Working around cbeer/engine_cart#28
It has seemingly nothing to do with ruby version or bundler caching. Either we have a generated rails app dir to move or we don't. The error says we don't. I thereby conclude that the preceeding We should check for the 2.2.0 :001 > `bullshit`
Errno::ENOENT: No such file or directory - bullshit
from (irb):1:in ``'
from (irb):1
from /Users/atz/.rvm/rubies/ruby-2.2.0/bin/irb:11:in `<main>'
2.2.0 :002 > $?
=> #<Process::Status: pid 17660 exit 127>
2.2.0 :003 > puts "abort?" unless $?
=> nil
2.2.0 :004 > puts "abort!" unless $?.success?
abort! We probably want This only defers the more material question: puts "travis_fold:start:enginecart-rails-new\r" if ENV['TRAVIS'] == 'true'
...
puts "travis_fold:end:enginecart-rails-new\r" if ENV['TRAVIS'] == 'true' Then it auto-collapses in Travis. |
Seems to work okay if I turn off caching or use ruby 2.2.0
The text was updated successfully, but these errors were encountered: