I’ve tried my hand at setting up a very basic bob script. All I need is to bundle to all PC platforms, as this would save time over doing it manually in the editor and waiting in between each platform to kick off the next build.
Generally speaking, I think the documentation page needs an update. It’s a decent start, but there seems to be a fair bit of assumed knowledge. This post in particular really highlighted this to me.
Onto my question and where I got stuck. I’m on Windows 10 and both Defold & bob are 1.2.176. I’ve placed bob.jar and my test batch file in the same directory as game.project. Batch file contents:
java -jar bob.jar --archive --platform x86_64-win32 distclean build bundle
PAUSE
This goes through the % progress but gives me the error: Warning: Failed to clean up temp directory
A ‘default’ folder is created in the build folder, but other than that nothing else. If I run my batch file as admin, I get the error Error: Unable to access jarfile bob.jar instead.
Any thoughts? Couldn’t find any answers on the forum though others seem to have had the same issue.