mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
fixing the path for the gem file
This commit is contained in:
parent
b1a1003546
commit
0521d16e3d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue