-
Notifications
You must be signed in to change notification settings - Fork 30
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
script/build: Where is the generated Debian package stored? #396
Comments
The built package would be stored at I would say pay close attention to the spelling of the Sample output when creating the debian package
I made a script to build just the debian package after the rest of the build is already done. Because I've ended up in this exact situation before. (See below). This should be saved as #! /usr/bin/env node
const glob = require('glob');
const CONFIG = require('./config');
const createDebianPackage = require('./lib/create-debian-package');
const outDir = CONFIG.buildOutputPath;
const appName = CONFIG.appMetadata.name;
console.log(`Searching for completed Atom build using glob pattern: ${outDir}/${appName}-*/`);
const packagedAppPath = glob.sync(`${outDir}/${appName}-*/`)[0];
console.log('Found Atom build at: ' + packagedAppPath);
createDebianPackage(packagedAppPath); EDIT: Updated with a better script. |
Indeed, it looks like I made an error while typing/pasting that flag. Tried again yesterday, this time with
and then, a Debian package was indeed created:
|
Nevertheless, that Debian package built that way, appears to be broken.
After correcting the
|
Hello all,
just ran
script/build --create-debian-package
as per instructions.The process apparently completed successfully:
However, I was not able to find the newly created Debian package. Is there anything to be done in addition?
The text was updated successfully, but these errors were encountered: