mirror of
https://github.com/qmk/qmk_firmware
synced 2025-01-11 09:23:04 +00:00
10 lines
180 B
Batchfile
10 lines
180 B
Batchfile
|
@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
|
||
|
)
|