diff options
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 |
