Wording clarifications for build options

This commit is contained in:
Damien Guard
2016-08-11 14:58:08 -07:00
committed by Nathan Sobo
parent 5a69d0bf4a
commit ad809a8d00

View File

@@ -9,10 +9,10 @@ require('colors')
const argv = require('yargs')
.usage('Usage: $0 [options]')
.help('help')
.describe('code-sign', 'Sign the executables (key specified in env vars)')
.describe('create-installer', 'Create an installer (Windows only)')
.describe('code-sign', 'Code-sign executables (key specified in env vars)')
.describe('create-installer', 'Create installer (Windows only)')
.describe('compress-artifacts', 'Compress Atom binaries (and symbols on macOS)')
.describe('install', 'Install the built version of Atom')
.describe('install', 'Install Atom')
.argv
const cleanOutputDirectory = require('./lib/clean-output-directory')
@@ -65,7 +65,7 @@ dumpSymbols()
return createWindowsInstaller(packagedAppPath, argv.codeSign).then(() => packagedAppPath)
}
else {
console.log('Skipping installer. Specify the --create-installer option to create a Squirrel-based Windows installer.'.gray)
console.log('Skipping creating installer. Specify the --create-installer option to create a Squirrel-based Windows installer.'.gray)
}
} else {
return Promise.resolve(packagedAppPath)