diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-22 11:21:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 11:21:59 +0000 |
commit | 00ce793f0db8bbbc5a5048c9b75512fb506eee93 (patch) | |
tree | c4bf51dd21b24f904adbfe99d10f7913e09c4960 /contrib | |
parent | 15a651f860191a6cfe0b3d5f1c0a846e6a584091 (diff) | |
parent | ce3d0954a51c1b958211a4cb41d3179c4c06fe8c (diff) | |
download | podman-00ce793f0db8bbbc5a5048c9b75512fb506eee93.tar.gz podman-00ce793f0db8bbbc5a5048c9b75512fb506eee93.tar.bz2 podman-00ce793f0db8bbbc5a5048c9b75512fb506eee93.zip |
Merge pull request #14631 from n1hility/opendoc-after-install
Open Windows tutorial after MSI installation
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/msi/podman.wxs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/msi/podman.wxs b/contrib/msi/podman.wxs index 786465589..ac2b5f328 100644 --- a/contrib/msi/podman.wxs +++ b/contrib/msi/podman.wxs @@ -41,7 +41,7 @@ <CustomAction Id="AddPath" ExeCommand="add" FileKey="8F507E28-A61D-4E64-A92B-B5A00F023AE8" Execute="deferred" Impersonate="yes" Return="check"/> <CustomAction Id="RemovePath" ExeCommand="remove" FileKey="8F507E28-A61D-4E64-A92B-B5A00F023AE8" Execute="deferred" Impersonate="yes" Return="check"/> - + <CustomAction Id='LaunchFile' ExeCommand="open "[INSTALLDIR]podman-for-windows.html"" FileKey="8F507E28-A61D-4E64-A92B-B5A00F023AE8" Execute="immediate" Impersonate="yes" Return="check"/> <Feature Id="Complete" Level="1"> <ComponentRef Id="INSTALLDIR_Component"/> <ComponentRef Id="MainExecutable"/> @@ -55,8 +55,9 @@ <InstallExecuteSequence> <RemoveExistingProducts Before="InstallInitialize"/> - <Custom Action="AddPath" After="InstallFiles">NOT Installed</Custom> + <Custom Action="AddPath" Before="InstallFinalize" After="InstallFiles">NOT Installed</Custom> <Custom Action="RemovePath" Before="RemoveFiles" After="InstallInitialize">(REMOVE="ALL") AND (NOT UPGRADINGPRODUCTCODE)</Custom> + <Custom Action='LaunchFile' After='InstallFinalize'>(NOT Installed) AND (NOT UILevel=2)</Custom> </InstallExecuteSequence> </Product> |