Skip to content

Commit

Permalink
Added /norestart flag to .NET install
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo committed Nov 19, 2015
1 parent b0bbbc4 commit 87b640c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Setup Script x64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ begin
begin
if FileExists(sFileName) then
begin
if Exec(sFileName,'/Passive','',SW_SHOW,ewWaitUntilTerminated,nCode) then
if Exec(sFileName,'/passive /norestart','',SW_SHOW,ewWaitUntilTerminated,nCode) then
begin
Result := true;
end
Expand Down
2 changes: 1 addition & 1 deletion Setup Script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ begin
begin
if FileExists(sFileName) then
begin
if Exec(sFileName,'/Passive','',SW_SHOW,ewWaitUntilTerminated,nCode) then
if Exec(sFileName,'/passive /norestart','',SW_SHOW,ewWaitUntilTerminated,nCode) then
begin
Result := true;
end
Expand Down

0 comments on commit 87b640c

Please sign in to comment.