From: Noah Andrews Date: Fri, 26 Feb 2016 04:53:44 +0000 (-0500) Subject: Add script to setup the PATH variable on Windows X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4ad96c60abc4d9e0de983d38b8126bc902178782;p=qmk_firmware.git Add script to setup the PATH variable on Windows --- diff --git a/setup-path-win.bat b/setup-path-win.bat new file mode 100644 index 000000000..4fbf9a870 --- /dev/null +++ b/setup-path-win.bat @@ -0,0 +1,9 @@ +@echo off +setx /M path "%PATH%;C:\MinGW\bin" > nul 2>&1 +if NOT ["%errorlevel%"]==["0"] ( + echo FAILED. Rerun with administrator privileges. + pause +) else ( + echo Success! + pause +)