Is there any reason Code Snippets tries to run update.bat - albeit unsuccessfully - as a post build step (on Windows) during the compilation of contrib plugins?
Specifically, to create the folders that may not exits.
Is there a reason you say it's unsuccessful. It works here.
Output size is 10.37 MB
Running project post-build steps
update.bat
Process terminated with status 0 (1 minutes, 29 seconds)
0 errors, 1 warnings (1 minutes, 29 seconds)
These plugins do not run C::B's core update[.bat]-script !
Is there a reason you say it's unsuccessful. It works here.
Sorry, I had gotten confused reading the log output (or lack thereof :) > nul 2>&1). If it is unwanted to have the commands themselves in the post build steps:
$(CMD_RM) ..\..\..\output\share\CodeBlocks\plugins\codesnippets.exe
zip -j9 ..\..\..\devel\share\CodeBlocks\codesnippets.zip manifest.xml
$(CMD_MKDIR) ..\..\..\devel\share\CodeBlocks\images\codesnippets
$(CMD_CP) .\resources\*.png ..\..\..\devel\share\CodeBlocks\images\codesnippets\
$(CMD_MKDIR) ..\..\..\output\share\CodeBlocks\images\codesnippets
$(CMD_CP) .\resources\*.png ..\..\..\output\share\CodeBlocks\images\codesnippets\
then perhaps it would be useful to add an explanatory echo to the beginning of the update.bat (for example echo Copying resources) to prevent unnecessary reports from people like me.