diff options
author | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-03-02 12:54:53 -0500 |
---|---|---|
committer | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-03-02 12:54:53 -0500 |
commit | 240f8d9fe0a6dbd7f51b1bd4cb93d884b6870ce1 (patch) | |
tree | 939aac8a6aa9b0735165d008eae1cc75da7f53cf /1-setup-path-win.bat | |
parent | c03d10d676ebbeabf838d4cf111567fd122214c5 (diff) |
Renamed scripts to show order
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 +) |