mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Wording clarifications for build options
This commit is contained in:
committed by
Nathan Sobo
parent
5a69d0bf4a
commit
ad809a8d00
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user