-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builder doesn't work on windows/linux. #117
Comments
I'm surprised Linux doesn't work. I've gotten that on Windows before when some of the generated files' paths were too long for Windows (> 256). You can check with Path Length Checker. |
BTW I'm actually using node-webkit-builder v0.2.0 and my build script is super simple. It looks like this: var NwBuilder = require('node-webkit-builder');
var nw = new NwBuilder({
files: './build/node-webkit/src/**', // use the glob format
platforms: ['osx', 'linux64', 'win'],
buildDir: './build/node-webkit/build',
cacheDir: './build/node-webkit/cache',
//macZip: true
macIcns: './build/node-webkit/src/app_icon.icns'
}); The built Mac app works fine, but the Linux 64 and Windows app just show the |
Same issue here. |
Same issue here. |
Please move discussion to #107 😄 |
Woops, that should be nwutils/nw-builder#107. |
My builder just work on Mac, doesn't work on windows/linux.
This is my Gruntfile:
nodewebkit:{
options:{
mac: true,
win: true,
linux32: true,
linux64: true,
version: '0.8.6'
},
src: [
'../desktop/package.json',
'../desktop/index.html',
'../desktop/packages//',
'../public//'
]
}
and when I try to run my project on windows/linux, just show "nw:blank" like this:
The text was updated successfully, but these errors were encountered: