msi: Call execute_script directly in InstallFinalize.

This commit is contained in:
Hans Leidekker 2014-11-04 10:58:04 +01:00 committed by Alexandre Julliard
parent 98ae03ff4d
commit 609de1a80a
1 changed files with 1 additions and 1 deletions

View File

@ -5312,7 +5312,7 @@ static UINT ACTION_InstallFinalize(MSIPACKAGE *package)
WCHAR *remove;
/* first do the same as an InstallExecute */
rc = ACTION_InstallExecute(package);
rc = execute_script(package, SCRIPT_INSTALL);
if (rc != ERROR_SUCCESS)
return rc;