lib/minke/tasks/fetch.rb in minke-1.11.4 vs lib/minke/tasks/fetch.rb in minke-1.11.5
- old
+ new
@@ -10,13 +10,13 @@
rvm_root = '/usr/local/rvm/scripts/rvm'
rvm_installed = File.exist?(rvm)
rvm_root_installed = File.exist?(rvm_root)
- rvm_command = ". #{rvm} && " if rvm_installed
- rvm_command = ". #{rvm_root} && " if rvm_root_installed
+ rvm_command = "source #{rvm} && " if rvm_installed
+ rvm_command = "source #{rvm_root} && " if rvm_root_installed
- @shell_helper.execute("#{rvm_command}bundle install -j3 && bundle update")
+ @shell_helper.execute("/bin/bash -c '#{rvm_command}bundle install -j3 && bundle update'")
puts '### Install generator dependencies'
if @generator_config.build_settings.build_commands.fetch != nil
run_with_block do