commit 635cacfe547e0b992bae0c573c9ea3b3cbcb8f2a
parent a126a3210907093af30156fbbeba06666eaa5ab9
Author: claustromaniac <20734810+claustromaniac@users.noreply.github.com>
Date: Wed, 29 Nov 2017 15:49:21 +0000
Replace PING with TIMEOUT
Otherwise earthing's nosy firewall bitches about it.
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/updater.bat b/updater.bat
@@ -39,7 +39,7 @@ IF DEFINED _updateb (
IF NOT "!_myname:~0,9!"=="[updated]" (
ECHO Checking updater version...
ECHO.
- DEL /F "[updated]!_myname!.bat" 2>nul
+ IF EXIST "[updated]!_myname!.bat" ( DEL /F "[updated]!_myname!.bat" )
REM Uncomment the next line and comment the powershell call for testing.
REM COPY /B /V /Y "!_myname!.bat" "[updated]!_myname!.bat"
(
@@ -51,7 +51,7 @@ IF DEFINED _updateb (
) ELSE (
ECHO Failed. Make sure PowerShell is allowed internet access.
ECHO.
- PING -n 301 127.0.0.1>nul
+ TIMEOUT 300
EXIT /B
)
) ELSE (
@@ -63,7 +63,7 @@ IF DEFINED _updateb (
) ELSE (
ECHO.
ECHO The [updated] label is reserved. Do not run an [updated] script directly, or rename it to something else before you run it.
- PING -n 301 127.0.0.1>nul
+ TIMEOUT 300
EXIT /B
)
)