summaryrefslogtreecommitdiff
path: root/lib/license/finder/ext/bundler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/license/finder/ext/bundler.rb')
-rw-r--r--lib/license/finder/ext/bundler.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/license/finder/ext/bundler.rb b/lib/license/finder/ext/bundler.rb
index b8c755b..9c9c045 100644
--- a/lib/license/finder/ext/bundler.rb
+++ b/lib/license/finder/ext/bundler.rb
@@ -11,16 +11,15 @@ module LicenseFinder
shell.execute([
:gem, :install, gem,
'--no-document',
- '--verbose',
'--no-update-sources',
'--ignore-dependencies',
'--no-suggestions',
'--local'
- ], env: default_env)
+ ], env: default_env, capture: false)
end
- shell.execute([:asdf, :reshim], env: default_env)
- shell.execute([:bundle, :config, '--local', :path, vendor_path], env: default_env)
- shell.execute([:bundle, :install, '--verbose'], env: default_env)
+ shell.execute([:asdf, :reshim], env: default_env, capture: false)
+ shell.execute([:bundle, :config, '--local', :path, vendor_path], env: default_env, capture: false)
+ shell.execute([:bundle, :install], env: default_env, capture: false)
end
end