Skip to content

Commit

Permalink
adding null check (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrudeau-stripe authored Jun 7, 2021
1 parent e0582f8 commit 3e17309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class Commands {
}

const skipVerify = await (async () => {
if (options.skipVerify !== undefined) {
if (options?.skipVerify !== undefined) {
return options.skipVerify;
}

Expand Down

0 comments on commit 3e17309

Please sign in to comment.