Autobuild fixes for path with spaces

This commit is contained in:
Gator96100 2021-05-23 15:01:35 +02:00
commit 81b9354e75
6 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
@echo off
set HOME=%~dp0
set QT_PLUGIN_PATH=%HOME%\libs\
set QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%
set PATH=%QT_PLUGIN_PATH%;%QT_PLUGIN_PATH%shell\;%PATH%
set "HOME=%~dp0"
set "QT_PLUGIN_PATH=%HOME%\libs\"
set "QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%"
set "PATH=%QT_PLUGIN_PATH%;%QT_PLUGIN_PATH%shell\;%PATH%"
set MSYSTEM=MINGW64

View file

@ -1,5 +1,5 @@
@echo off
cd %~dp0client
cd "%~dp0client"
call setup.bat
::If you want to force the COM port add it to the line, example:
::bash pm3-flash-all COM3

View file

@ -1,5 +1,5 @@
@echo off
cd %~dp0client
cd "%~dp0client"
call setup.bat
::If you want to force the COM port add it to the line, example:
::bash pm3-flash-bootrom COM3

View file

@ -1,5 +1,5 @@
@echo off
cd %~dp0client
cd "%~dp0client"
call setup.bat
::If you want to force the COM port add it to the line, example:
::bash pm3-flash-fullimage COM3

View file

@ -1,5 +1,5 @@
@echo off
cd %~dp0client
cd "%~dp0client"
call setup.bat
::If you want to force the COM port use the -p parameter, example:
::bash pm3 -p COM3

View file

@ -1,5 +1,5 @@
@echo off
SET PATH=%cd%\msys2\usr\bin;%PATH%
SET "PATH=%cd%\msys2\usr\bin;%PATH%"
copy /Y %cd%\setup\*.post %cd%\msys2\etc\post-install\ >NUL
copy /Y %cd%\setup\*.conf %cd%\msys2\etc\ >NUL