summaryrefslogtreecommitdiff
path: root/1-setup-path-win.bat
diff options
context:
space:
mode:
authorIBNobody2016-04-13 19:14:23 -0500
committerIBNobody2016-04-13 19:14:23 -0500
commit01f5b35396e5558a39e6f35ef9128b96c289c05c (patch)
treef897786dddcd310f227ac157e79c7dd717e9b582 /1-setup-path-win.bat
parent390fd3107a84277151ceb63255c859307221a290 (diff)
parenta0194d7e5ff2f3d242a5c6508abf81b4ddf67a3e (diff)
Merge remote-tracking branch 'refs/remotes/jackhumbert/master' into pc_planck
Diffstat (limited to '1-setup-path-win.bat')
-rw-r--r--1-setup-path-win.bat10
1 files changed, 8 insertions, 2 deletions
diff --git a/1-setup-path-win.bat b/1-setup-path-win.bat
index 2c15857bb..f612d0f4a 100644
--- a/1-setup-path-win.bat
+++ b/1-setup-path-win.bat
@@ -5,8 +5,14 @@ SET CMDLINERUNSTR=%SystemRoot%\system32\cmd.exe
SET NEWPATH1="C:\MinGW\msys\1.0\bin"
SET NEWPATH2="C:\MinGW\bin"
-:: Make sure paths exist
-IF NOT EXIST !NEWPATH1! (ECHO Path not found: %NEWPATH1% && GOTO ExitBatch)
+:: Make sure we're running with administrator privileges
+NET SESSION >nul 2>&1
+IF ERRORLEVEL 1 (
+ ECHO FAILED. Run this script with administrator privileges.
+ GOTO ExitBatch
+)
+
+:: Make sure the second path exists. The first path won't be created until the second script is run
IF NOT EXIST !NEWPATH2! (ECHO Path not found: %NEWPATH2% && GOTO ExitBatch)
:: Add paths