Skip to content

Commit

Permalink
fix: Pass along second arg to PercyCommand's stop (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robdel12 authored Oct 31, 2019
1 parent 4597511 commit 4d0c8a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export default class Start extends PercyCommand {
await healthCheck(flags.port!)
}

async stop(exitCode?: any) {
async stop(exitCode?: any, stopProcess?: boolean) {
this.processService.cleanup()
await super.stop(exitCode)
await super.stop(exitCode, stopProcess)
}

private runDetached(flags: any) {
Expand Down

0 comments on commit 4d0c8a6

Please sign in to comment.