forrest icon indicating copy to clipboard operation
forrest copied to clipboard

create linux executable

Open stefanjudis opened this issue 8 years ago • 3 comments

This includes:

  • [ ] modifying the root package.json to include several build tasks
  • [ ] modifying release.js to read out env 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

stefanjudis avatar Jul 22 '16 09:07 stefanjudis

Hi @kaesetoast, would you still be interested to help with this issue?

DanielRuf avatar Jan 31 '19 12:01 DanielRuf

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 :-)

kaesetoast avatar Jan 31 '19 13:01 kaesetoast

No problem. Let us know if you need any help then and when you have a PR that we can review.

DanielRuf avatar Jan 31 '19 14:01 DanielRuf