msi: Set the action taken in the ProcessComponents and InstallFiles actions.
This commit is contained in:
parent
8722d0c44a
commit
27e90274b5
|
@ -2993,6 +2993,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
|
|||
else
|
||||
MSIREG_DeleteUserDataComponentKey(comp->ComponentId, NULL);
|
||||
}
|
||||
comp->Action = comp->ActionRequest;
|
||||
|
||||
/* UI stuff */
|
||||
uirow = MSI_CreateRecord(3);
|
||||
|
|
|
@ -98,6 +98,8 @@ static void schedule_install_files(MSIPACKAGE *package)
|
|||
ui_progress(package,2,file->FileSize,0,0);
|
||||
file->state = msifs_skipped;
|
||||
}
|
||||
else
|
||||
file->Component->Action = INSTALLSTATE_LOCAL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue