We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37afd80 commit bca0c9cCopy full SHA for bca0c9c
START.bat
@@ -27,12 +27,11 @@ for /f "delims=" %%a in ('powershell -Command "(Invoke-WebRequest -Uri 'https://
27
echo Current script version: %scriptVersion%
28
echo Latest version from GitHub: %latestVersion%
29
REM Check if the script version is greater than the latest version
30
-if "%latestVersion%" LSS "%scriptVersion%" (
+if %latestVersion% LEQ %scriptVersion% (
31
echo You have the latest version of the script.
32
goto initiateServer
33
) else (
34
echo An update is available for the script ^(version "%latestVersion%"^).
35
- echo Do you want to update? (Y/N)
36
choice /C YN /M "Update script (Y/N): "
37
if errorlevel 2 goto initiateServer
38
if errorlevel 1 (
0 commit comments