Skip to content

Commit 8a44cfd

Browse files
authored
fix(cli): update --help command output (#3335)
1 parent c802b1c commit 8a44cfd

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

packages/api/cli/src/electron-forge.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,10 @@ program
3434
.option('--verbose', 'Enables verbose mode')
3535
.command('init', 'Initialize a new Electron application')
3636
.command('import', 'Attempts to navigate you through the process of importing an existing project to "electron-forge"')
37-
.command('lint', 'Lints the current Electron application')
37+
.command('start', 'Start the current Electron application in development mode')
3838
.command('package', 'Package the current Electron application')
3939
.command('make', 'Generate distributables for the current Electron application')
40-
.command('start', 'Start the current Electron application')
41-
.command('publish', 'Publish the current Electron application to GitHub')
42-
.command('install', 'Install an Electron application from GitHub')
40+
.command('publish', 'Publish the current Electron application')
4341
.on('command:*', (commands) => {
4442
if (!program._execs.has(commands[0])) {
4543
console.error();

0 commit comments

Comments
 (0)