mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-19 12:59:48 -07:00
Autobuild fixes for path with spaces
This commit is contained in:
parent
981e8849fc
commit
81b9354e75
6 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
@echo off
|
@echo off
|
||||||
set HOME=%~dp0
|
set "HOME=%~dp0"
|
||||||
set QT_PLUGIN_PATH=%HOME%\libs\
|
set "QT_PLUGIN_PATH=%HOME%\libs\"
|
||||||
set QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%
|
set "QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%"
|
||||||
set PATH=%QT_PLUGIN_PATH%;%QT_PLUGIN_PATH%shell\;%PATH%
|
set "PATH=%QT_PLUGIN_PATH%;%QT_PLUGIN_PATH%shell\;%PATH%"
|
||||||
set MSYSTEM=MINGW64
|
set MSYSTEM=MINGW64
|
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
cd %~dp0client
|
cd "%~dp0client"
|
||||||
call setup.bat
|
call setup.bat
|
||||||
::If you want to force the COM port add it to the line, example:
|
::If you want to force the COM port add it to the line, example:
|
||||||
::bash pm3-flash-all COM3
|
::bash pm3-flash-all COM3
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
cd %~dp0client
|
cd "%~dp0client"
|
||||||
call setup.bat
|
call setup.bat
|
||||||
::If you want to force the COM port add it to the line, example:
|
::If you want to force the COM port add it to the line, example:
|
||||||
::bash pm3-flash-bootrom COM3
|
::bash pm3-flash-bootrom COM3
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
cd %~dp0client
|
cd "%~dp0client"
|
||||||
call setup.bat
|
call setup.bat
|
||||||
::If you want to force the COM port add it to the line, example:
|
::If you want to force the COM port add it to the line, example:
|
||||||
::bash pm3-flash-fullimage COM3
|
::bash pm3-flash-fullimage COM3
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
cd %~dp0client
|
cd "%~dp0client"
|
||||||
call setup.bat
|
call setup.bat
|
||||||
::If you want to force the COM port use the -p parameter, example:
|
::If you want to force the COM port use the -p parameter, example:
|
||||||
::bash pm3 -p COM3
|
::bash pm3 -p COM3
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@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\*.post %cd%\msys2\etc\post-install\ >NUL
|
||||||
copy /Y %cd%\setup\*.conf %cd%\msys2\etc\ >NUL
|
copy /Y %cd%\setup\*.conf %cd%\msys2\etc\ >NUL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue