From 9c4f6d7d50e0ac792b040657f0dc0805e212ef64 Mon Sep 17 00:00:00 2001 From: Adam Thorn <alt36@cam.ac.uk> Date: Thu, 2 Apr 2020 13:58:56 +0100 Subject: [PATCH] msedge: switch condition to versiongreaterorequal rather than versionequalto Call me a pessimist but I bet this package automatically updates - but if I'm wrong then this commit will do nothing and be harmless! --- packages/msedge.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/msedge.xml b/packages/msedge.xml index 22ae43df..00642364 100755 --- a/packages/msedge.xml +++ b/packages/msedge.xml @@ -5,7 +5,7 @@ <variable name="version" value="80.0.361.109" /> - <check type="uninstall" condition="versionequalto" path="Microsoft Edge" value="%VERSION%" /> + <check type="uninstall" condition="versiongreaterorequal" path="Microsoft Edge" value="%VERSION%" /> <install cmd='msiexec /qn /log %WPKGLOGDIR%\edge_%VERSION%_install.log /i "%WPKGSOFTWARE%\edge-olium\%version%\MicrosoftEdgeEnterpriseX64.msi" ' /> <install cmd='cmd /c if exist "%PUBLIC%\desktop\Microsoft Edge.lnk" del /q "%PUBLIC%\desktop\Microsoft Edge.lnk"' /> -- GitLab