Reviewed-on: #3 Co-authored-by: Scott E. Graves <scott.e.graves@protonmail.com> Co-committed-by: Scott E. Graves <scott.e.graves@protonmail.com>
11 lines
176 B
Batchfile
11 lines
176 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
pushd "%~dp0"
|
|
for /f "usebackq tokens=*" %%i in (`cygpath "%~2"`) do set ARG1=%%i
|
|
call mingw64 -no-start ./update_project.sh "%~1" "%ARG1%"
|
|
popd
|
|
|
|
endlocal
|