diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-08 10:22:39 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-02-14 19:30:14 +0000 |
commit | 9be39b4c67c733058c3b709e897a8477605f6d4a (patch) | |
tree | ea9d6ef1d03c982cadabdb5a8056528b2bd94a7d | |
parent | ab149c6ba0d19dfd6e15f2324cf9e3d6e2944ac5 (diff) |
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.
-rw-r--r-- | guix/build/ruby-build-system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build/ruby-build-system.scm b/guix/build/ruby-build-system.scm index cdabd829e2..64b4400f1a 100644 --- a/guix/build/ruby-build-system.scm +++ b/guix/build/ruby-build-system.scm @@ -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. |