Skip to content

Commit

Permalink
fix: do not pass --quiet to pip install
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Mitchell <nickm@us.ibm.com>
  • Loading branch information
starpit committed Nov 28, 2024
1 parent 7a474c0 commit cca62a3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pkg/runtime/needs/install_requirements.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,8 @@ func requirementsInstall(ctx context.Context, version, requirements string, verb
nocache = "--no-cache-dir"
}

quiet := "-q"
if verbose {
quiet = ""
}
quiet := ""
//quiet := "-q"

if version == "" || version == "latest" {
version = "3"
Expand Down

0 comments on commit cca62a3

Please sign in to comment.