Skip to content

Commit

Permalink
Revert "Use dry run for pip instead of actually installing packages f…
Browse files Browse the repository at this point in the history
…or speed up and increased compatibility"

This reverts commit b5b3761.
  • Loading branch information
sweoggy committed Nov 22, 2023
1 parent b5b3761 commit 99a752a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/resolution/pm/pip/cmd_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (cmdf CmdFactory) MakeInstallCmd(command string, file string) (*exec.Cmd, e

return &exec.Cmd{
Path: path,
Args: []string{command, "install", "--dry-run", "-r", file},
Args: []string{command, "install", "-r", file},
}, err
}

Expand Down

0 comments on commit 99a752a

Please sign in to comment.