1
0
Fork 0

tiny issues

space instead of TAB, missing quotation marks and suppressing the error message when no *.js files are found in the OR-folder
This commit is contained in:
earthlng 2017-12-17 13:02:34 +01:00 committed by GitHub
parent 2f5ae9b294
commit 1262edee61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ IF /I "%~1"=="-unattended" ( SET _ua=1 )
IF /I "%~1"=="-log" ( SET _log=1 ) IF /I "%~1"=="-log" ( SET _log=1 )
IF /I "%~1"=="-logp" ( SET _log=1 & SET _logp=1 ) IF /I "%~1"=="-logp" ( SET _log=1 & SET _logp=1 )
IF /I "%~1"=="-multioverrides" ( SET _multi=1 ) IF /I "%~1"=="-multioverrides" ( SET _multi=1 )
IF /I "%~1"=="-merge" ( SET _merge=1 ) IF /I "%~1"=="-merge" ( SET _merge=1 )
IF /I "%~1"=="-updatebatch" ( SET _updateb=1 ) IF /I "%~1"=="-updatebatch" ( SET _updateb=1 )
SHIFT SHIFT
GOTO parse GOTO parse
@ -102,7 +102,7 @@ IF NOT EXIST user.js (
) )
ECHO: ECHO:
IF NOT DEFINED _ua ( IF NOT DEFINED _ua (
CALL :message "This batch should be run from your Firefox profile directory." CALL :message "This batch should be run from your Firefox profile directory."
ECHO: It will download the latest version of ghacks user.js from github and then ECHO: It will download the latest version of ghacks user.js from github and then
CALL :message "append any of your own changes from user-overrides.js to it." CALL :message "append any of your own changes from user-overrides.js to it."
CALL :message "Visit the wiki for more detailed information." CALL :message "Visit the wiki for more detailed information."
@ -115,7 +115,7 @@ IF NOT DEFINED _ua (
) )
IF DEFINED _log ( IF DEFINED _log (
CALL :log >>user.js-update-log.txt 2>&1 CALL :log >>user.js-update-log.txt 2>&1
IF DEFINED _logp ( START user.js-update-log.txt ) IF DEFINED _logp ( START user.js-update-log.txt )
EXIT /B EXIT /B
:log :log
ECHO:################################################################## ECHO:##################################################################
@ -125,7 +125,7 @@ IF EXIST user.js.old.bak ( DEL /F user.js.old.bak )
IF EXIST user.js ( IF EXIST user.js (
IF EXIST user.js.bak ( REN user.js.bak user.js.old.bak ) IF EXIST user.js.bak ( REN user.js.bak user.js.old.bak )
REN user.js user.js.bak REN user.js user.js.bak
CALL :message "Current user.js file backed up. CALL :message "Current user.js file backed up."
) )
CALL :message "Retrieving latest user.js file from github repository..." CALL :message "Retrieving latest user.js file from github repository..."
( (
@ -133,7 +133,7 @@ CALL :message "Retrieving latest user.js file from github repository..."
) >nul 2>&1 ) >nul 2>&1
IF EXIST user.js ( IF EXIST user.js (
IF DEFINED _multi ( IF DEFINED _multi (
FORFILES /P user.js-overrides /M *.js >nul FORFILES /P user.js-overrides /M *.js >nul 2>&1
IF NOT ERRORLEVEL 1 ( IF NOT ERRORLEVEL 1 (
IF DEFINED _merge ( IF DEFINED _merge (
CALL :message "Merging..." CALL :message "Merging..."