diff options
| author | mo khan <mo.khan@gmail.com> | 2020-11-10 18:43:31 +0000 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-11-10 18:43:31 +0000 |
| commit | 191185c4303768c6d9a1431c35143501c06ee4d7 (patch) | |
| tree | 97e7ac6fffec356e57b0c52e10eacd716281830e /lib/license/finder/ext/pipenv.rb | |
| parent | 1bc270fea3b352b44dfcef3fe16e97a2bbd4d7a5 (diff) | |
| parent | 91f1671c67de9c51407f8527d8fc6197463151d2 (diff) | |
Stream `npm ci` output to log
See merge request gitlab-org/security-products/analyzers/license-finder!16
Diffstat (limited to 'lib/license/finder/ext/pipenv.rb')
| -rw-r--r-- | lib/license/finder/ext/pipenv.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/license/finder/ext/pipenv.rb b/lib/license/finder/ext/pipenv.rb index 2dfad64..4641614 100644 --- a/lib/license/finder/ext/pipenv.rb +++ b/lib/license/finder/ext/pipenv.rb @@ -8,8 +8,8 @@ module LicenseFinder return unless pipfile? tool_box.install(tool: :python, version: python_version, env: default_env) - shell.execute([:asdf, :exec, :pipenv, '--python', python_version], env: default_env) - shell.execute([:asdf, :exec, :pipenv, :sync], env: default_env) + shell.execute([:asdf, :exec, :pipenv, '--python', python_version], env: default_env, capture: false) + shell.execute([:asdf, :exec, :pipenv, :sync], env: default_env, capture: false) end end |
