Hi.
My program is UI wrapper around some console tool. Basically I create UI with few steps, but most important part is catch output of that console app.
So that, I'm put that executable inside my project dir and it was OK, while I'm work with it.
As soon, as I test packaging app, I realize, that there is showstopper. If I pack my app.nw as zip, it is unzipped into temp folder, where execution is not allowed, so that my program fail.
If I'm pack my app.nw as dir, content of my node-webkit app is not extracted to temp dir and executed from place, but I'm continue to get error, that, I'm not able to spawn that tool.
I'm use Mac OS for now, but I'm sure that similar issues will be on Linux. Do not know about Windows.
So that question is: what is the right way to distribute my node-webkit application, prepackaged from different platforms, with ability to find location and execute that additional binary file?!
Thanks a lot.