Skip to content

Commit f4bfcfe

Browse files
committed
Fix Progress pip option
1 parent e96fd96 commit f4bfcfe

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Manager/Cmd/Pip/PyPackage.Manager.Cmd.Pip.Install.pas

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,9 @@ function TPyPackageManagerCmdPipInstall.MakeInstallPrefixCmd: TArray<string>;
267267
function TPyPackageManagerCmdPipInstall.MakeInstallProgressBarCmd: TArray<string>;
268268
begin
269269
if FOpts.ProgressBar then
270-
Result := TArray<string>.Create('--progress-bar');
270+
Result := TArray<string>.Create('--progress-bar', 'on')
271+
else
272+
Result := TArray<string>.Create('--progress-bar', 'off');
271273
end;
272274

273275
function TPyPackageManagerCmdPipInstall.MakeIntallPythonImplementationCmd: TArray<string>;

0 commit comments

Comments
 (0)