[sysadmin/neon-tooling] /: the gem command needs to be run in a shell
Carlos De Maine <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 7f58ed07e354434a2eff38312c8da1b4d9e59ec1 by Carlos De Maine.
Committed on 19/07/2026 at 10:01.
Pushed by carlosdem into branch 'master'.
the gem command needs to be run in a shell
M +1 -1 deploy_in_container.rake
https://invent.kde.org/sysadmin/neon-tooling/-/commit/7f58ed07e354434a2eff38312c8da1b4d9e59ec1
diff --git a/deploy_in_container.rake b/deploy_in_container.rake
index a9ac7008..9891f3d7 100644
--- a/deploy_in_container.rake
+++ b/deploy_in_container.rake
@@ -153,7 +153,7 @@ def bundle_install
FileUtils.rm_rf('.bundle/')
FileUtils.rm_rf('vendor/')
#bundle('config' 'set' '--local' 'system' 'true')
- gem install --force bundler:2.5.9
+ sh 'gem install --force bundler:2.5.9'
bundle('_2.5.9_', 'install', "--jobs=#{[Etc.nprocessors / 2, 1].max}", '--verbose')
rescue StandardError => e
log_dir = "#{tooling_path}/#{ENV['DIST']}_#{ENV['TYPE']}"