mirror of https://gitlab.com/basile.b/dexed.git
fix, win, console visible when a DUB pack is fetch
This commit is contained in:
parent
767e990374
commit
9f346bfa05
|
@ -321,6 +321,7 @@ begin
|
|||
try
|
||||
dub.Executable:= 'dub';
|
||||
dub.Options:= [poUsePipes, poStderrToOutPut];
|
||||
dub.ShowWindow:= swoHIDE;
|
||||
if not upd then
|
||||
begin
|
||||
dub.Parameters.Add('fetch');
|
||||
|
@ -357,6 +358,7 @@ begin
|
|||
dub := TProcess.Create(nil);
|
||||
try
|
||||
dub.Executable:= 'dub';
|
||||
dub.ShowWindow:= swoHIDE;
|
||||
dub.Options:= [poUsePipes, poStderrToOutPut];
|
||||
dub.Parameters.Add('build');
|
||||
dub.Parameters.Add('--build=release');
|
||||
|
|
Loading…
Reference in New Issue