From 1d330e7330580c376fe0c09f660a65778896580a Mon Sep 17 00:00:00 2001 From: David Refoua Date: Mon, 17 Oct 2022 21:09:06 +0330 Subject: [PATCH] remove incompatible version string matching --- scripts/update.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/update.ps1 b/scripts/update.ps1 index b8de658..7c29435 100644 --- a/scripts/update.ps1 +++ b/scripts/update.ps1 @@ -237,9 +237,9 @@ foreach ($s in $sources) { Write-Verbose "Version: $version" if ( $s.version -ne $version ) { - if ( ([System.Version] $s.version) -gt ([System.Version] $version) ) { - throw "The current version $($s.version) is already newer than the found version $version!" - } + # if ( ([System.Version] $s.version) -gt ([System.Version] $version) ) { + # throw "The current version $($s.version) is already newer than the found version $version!" + # } $count++ }