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
When pulling down a fresh issue from Github, I run bundle install without any errors, but when running foreman start I get the following error message:
15:20:25 jekyll.1 | /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/runner.rb:365:in `block in require_program': program version required (Commander::Runner::CommandError)
15:20:25 jekyll.1 | from /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/runner.rb:364:in `each'
15:20:25 jekyll.1 | from /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/runner.rb:364:in `require_program'
15:20:25 jekyll.1 | from /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/runner.rb:52:in `run!'
15:20:25 jekyll.1 | from /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/delegates.rb:11:in `run!'
15:20:25 jekyll.1 | from /Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@global/gems/commander-4.1.5/lib/commander/import.rb:10:in `block in <top (required)>'
Some other terminal commands:
which
[coffeescript-cookbook.github.com] [master*] which ruby
/Users/mbodmer/.rvm/rubies/ruby-1.9.3-p484/bin/ruby
[coffeescript-cookbook.github.com] [master*] which jekyll
/Users/mbodmer/.rvm/gems/ruby-1.9.3-p484@coffeescript-cookbook/bin/jekyll
Solution to this was that I had to independently run bundle exec jekyll build --watch before running foreman start for the first time. The problem here is that when trying to run foreman start doesn't actually run the jekyll task command. If I run bundle exec jekyll build --watch independent of foreman, it works as desired.
When pulling down a fresh issue from Github, I run
bundle install
without any errors, but when runningforeman start
I get the following error message:Some other terminal commands:
I am running Mac OS X 10.9.2, and have previously installed Jekyll for another project.
The text was updated successfully, but these errors were encountered: