Skip to content

Commit

Permalink
fixing the path for the gem file
Browse files Browse the repository at this point in the history
  • Loading branch information
simianhacker committed Nov 3, 2014
1 parent b1a1003 commit 0521d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/install_gems.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var join = require('path').join;
module.exports = function (grunt) {
grunt.registerTask('install_gems', 'Install Ruby Gems', function () {
var done = this.async();
var gemfile = join(grunt.config.get('src'), 'server', 'Gemfile');
var gemfile = join(grunt.config.get('root'), 'Gemfile');
var jrubyPath = grunt.config.get('jrubyPath');
var jruby = jrubyPath + '/bin/jruby -S';
var command = jruby + ' gem install bundler && ' + jruby + ' bundle install --gemfile ' + gemfile;
Expand Down

0 comments on commit 0521d16

Please sign in to comment.