Skip to content

Commit

Permalink
Fix inno update package (#1264)
Browse files Browse the repository at this point in the history
  • Loading branch information
heatray authored Jun 20, 2024
1 parent bc59d29 commit d7210ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions win-linux/package/windows/update_common.iss
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ begin
if Length(InArgs) > 0 then InArgs := InArgs + ' ';
InArgs := InArgs + '/LANG='+getAppPrevLang() + ' /silent /update';
ExtractTemporaryFiles('{tmp}\{#TARGET_NAME}');
ExecAsOriginalUser(ExpandConstant('{tmp}\{#TARGET_NAME}'), InArgs, '', SW_SHOWNORMAL, ewNoWait, ResultCode);
ExtractTemporaryFiles('{tmp}\{#TARGET_NAME}.exe');
ExecAsOriginalUser(ExpandConstant('{tmp}\{#TARGET_NAME}.exe'), InArgs, '', SW_SHOWNORMAL, ewNoWait, ResultCode);
Result := False;
end;
Expand Down

0 comments on commit d7210ee

Please sign in to comment.