Skip to content

Commit

Permalink
fix: --inspect-brk flag typo
Browse files Browse the repository at this point in the history
closes #46
  • Loading branch information
Qu4k committed May 23, 2020
1 parent ae50c34 commit 939e904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ export function buildFlags(options: ScriptOptions): string[] {
flags.push(options.cert);
}
if (options.inspect) {
flags.push(`--inspect=${options.inspect}}`);
flags.push(`--inspect=${options.inspect}`);
}
if (options.inspectBrk) {
flags.push(`--inspect-brk=${options.inspectBrk}}`);
flags.push(`--inspect-brk=${options.inspectBrk}`);
}
if (options.unstable) {
flags.push("--unstable");
Expand Down

0 comments on commit 939e904

Please sign in to comment.