diff options
author | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-03-22 17:29:31 -0400 |
---|---|---|
committer | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-03-22 17:29:31 -0400 |
commit | a4ff9f256738cf637553e7840d53f778d791fb6f (patch) | |
tree | 91d327587401e69843eecb353e97a3119aa9939b /1-setup-path-win.bat | |
parent | e36a441274e9e494e1d8e38df1901f3acf9def27 (diff) | |
parent | 403d756ad56de18488e3d048e849c55e77a20b32 (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to '1-setup-path-win.bat')
-rw-r--r-- | 1-setup-path-win.bat | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1-setup-path-win.bat b/1-setup-path-win.bat new file mode 100644 index 0000000000..49fb00e149 --- /dev/null +++ b/1-setup-path-win.bat @@ -0,0 +1,9 @@ +@echo off +setx /M path "%PATH%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul 2>&1 +if NOT ["%errorlevel%"]==["0"] ( + echo FAILED. Rerun with administrator privileges. + pause +) else ( + echo Success! + pause +) |