From 92b3918b26c1700140ed59d215012c636c494f19 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 23 Apr 2019 23:25:10 -0700 Subject: [PATCH] Correct the path used by forfiles commands --- scripts/generate-installers.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate-installers.bat b/scripts/generate-installers.bat index 0d540f87..dadf8ade 100644 --- a/scripts/generate-installers.bat +++ b/scripts/generate-installers.bat @@ -128,11 +128,11 @@ windeployqt.exe --dir %DEPLOY_FOLDER% --%BUILD_CONFIG% --qmldir %SOURCE_ROOT%\ap if !ERRORLEVEL! NEQ 0 goto Error echo Generating QML cache -forfiles /m *.qml /s /c "cmd /c qmlcachegen.exe @path" +forfiles /p %DEPLOY_FOLDER% /m *.qml /s /c "cmd /c qmlcachegen.exe @path" if !ERRORLEVEL! NEQ 0 goto Error echo Deleting original QML files -forfiles /m *.qml /s /c "cmd /c del @path" +forfiles /p %DEPLOY_FOLDER% /m *.qml /s /c "cmd /c del @path" if !ERRORLEVEL! NEQ 0 goto Error echo Harvesting files for WiX