diff options
author | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-02-26 00:29:55 -0500 |
---|---|---|
committer | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-02-26 00:29:55 -0500 |
commit | 37c8a232764d8c614d6e1183e80bab89d901cbee (patch) | |
tree | 8eb80615f499865574aea56ec8cdb49a0e41da09 | |
parent | 4ad96c60abc4d9e0de983d38b8126bc902178782 (diff) |
Include MSYS directory in Windows path
-rw-r--r-- | setup-path-win.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-path-win.bat b/setup-path-win.bat index 4fbf9a870e..49fb00e149 100644 --- a/setup-path-win.bat +++ b/setup-path-win.bat @@ -1,5 +1,5 @@ @echo off -setx /M path "%PATH%;C:\MinGW\bin" > nul 2>&1 +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 |