guix: ruby-build-system: Do gem install --verbose.
This is helpful as it displays more information about what gem install is doing, especially for packages with native extensions. * guix/build/ruby-build-system.scm (install): Add --verbose to gem install command.
This commit is contained in:
parent
ab149c6ba0
commit
9be39b4c67
|
@ -144,6 +144,7 @@ GEM-FLAGS are passed to the 'gem' invokation, if present."
|
|||
|
||||
(or (zero?
|
||||
(apply system* "gem" "install" gem-file
|
||||
"--verbose"
|
||||
"--local" "--ignore-dependencies" "--vendor"
|
||||
;; Executables should go into /bin, not
|
||||
;; /lib/ruby/gems.
|
||||
|
|
Loading…
Reference in New Issue