forrest
forrest copied to clipboard
create linux executable
This includes:
- [ ] modifying the root
package.json
to include several build tasks - [ ] modifying
release.js
to read outenv
variable and build for targets - [ ] if no specific target was set via
env
variable all available targets should be created (Promise.all
)
I created a linux distribution already by making following changes.
function build () {
require( '../config' ).getPackConfig( ( error, config ) => {
builder.build( {
targets : Platform.LINUX.createTarget(),
devMetadata : {
build : config.build
}
} )
.then( () => {
console.log( 'Build(s) successful!' );
console.log( 'DONE\n' );
} )
.catch( error => {
console.error( error );
} );
} );
}
Help would be great here. :) .cc @kaesetoast
Hi @kaesetoast, would you still be interested to help with this issue?
Hi @DanielRuf. Damn, sorry, I totally forgot about this! Yes, sure. I'll have some spare time this weekend, I'll be happy to give it a crack :-)
No problem. Let us know if you need any help then and when you have a PR that we can review.