Skip to content

Commit

Permalink
ci: added new flags to installer for silent install
Browse files Browse the repository at this point in the history
  • Loading branch information
iadonkey committed Sep 21, 2024
1 parent d86d991 commit b60dbc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Twinpack.iss
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ begin
for i := 0 to DisplayNames17.Count-1 do
begin
if (((GetCmdParam('SILENT') <> 'true') and VisualStudioOptionsPage.CheckListBox.Checked[i+3+DisplayNames15.Count]) or (GetCmdParam('VSIX17:'+IntToStr(i+DisplayNames15.Count)) = 'true')) then
if (((GetCmdParam('SILENT') <> 'true') and VisualStudioOptionsPage.CheckListBox.Checked[i+3+DisplayNames15.Count]) or (GetCmdParam('VSIX17:'+IntToStr(i)) = 'true')) then
begin
ShellExec('', InstallationPaths17[i] + '\Common7\IDE\VSIXInstaller.exe', '/u:'+TwinpackVsixGuid17+' /quiet', '', SW_HIDE, ewWaitUntilTerminated, ReturnCode);
ShellExec('', InstallationPaths17[i] + '\Common7\IDE\VSIXInstaller.exe', '/force ' + ExpandConstant('{tmp}\TwinpackVsix.17.vsix'), '', SW_HIDE, ewWaitUntilTerminated, ReturnCode);
Expand Down

0 comments on commit b60dbc8

Please sign in to comment.