Skip to content

Commit

Permalink
feat: exit alias for quit command in repl
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce committed Aug 31, 2023
1 parent 20606e3 commit 3ed5365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/repl/commands/quit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { log } from '../../../util/log'

export const quitCommand: ReplCommand = {
description: 'End the repl',
aliases: [ 'q' ],
aliases: [ 'q', 'exit' ],
usageExample: ':quit',
script: false,
fn: () => { log.info('bye'); process.exit(0) }
Expand Down

0 comments on commit 3ed5365

Please sign in to comment.