1
0
Fork 0

Merge pull request #223 from NoahAndrews/patch-3

Fix #198
This commit is contained in:
Jack Humbert 2016-03-29 16:38:31 -04:00
commit 26513b497b

View file

@ -1,9 +1,14 @@
@echo off @echo off
setx /M path "%PATH%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /f /v Path /t REG_SZ /d "%path%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul
echo.
if NOT ["%errorlevel%"]==["0"] ( if NOT ["%errorlevel%"]==["0"] (
echo FAILED. Rerun with administrator privileges. echo FAILED. You probably just need to run the script with administrator privileges.
pause
) else ( ) else (
echo Success! echo Success!
pause setx QMK QMK > nul
) )
echo.
pause