Skip to content

Commit

Permalink
fix(cli): update --help command output (#3335)
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao committed Sep 5, 2023
1 parent c802b1c commit 8a44cfd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/api/cli/src/electron-forge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ program
.option('--verbose', 'Enables verbose mode')
.command('init', 'Initialize a new Electron application')
.command('import', 'Attempts to navigate you through the process of importing an existing project to "electron-forge"')
.command('lint', 'Lints the current Electron application')
.command('start', 'Start the current Electron application in development mode')
.command('package', 'Package the current Electron application')
.command('make', 'Generate distributables for the current Electron application')
.command('start', 'Start the current Electron application')
.command('publish', 'Publish the current Electron application to GitHub')
.command('install', 'Install an Electron application from GitHub')
.command('publish', 'Publish the current Electron application')
.on('command:*', (commands) => {
if (!program._execs.has(commands[0])) {
console.error();
Expand Down

0 comments on commit 8a44cfd

Please sign in to comment.