Skip to content

Commit

Permalink
patch(cli): fix typo
Browse files Browse the repository at this point in the history
Validating was misspelled
  • Loading branch information
waynenilsen committed Nov 3, 2022
1 parent b1396bc commit 321452f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function buildCom(
signale.await(`Creating ${TARGET_DIR} directory...`);
await executeCommand(`mkdir -p ${TARGET_DIR}`, verbose);

signal.await(`Validatig ${source} contract...`);
signal.await(`Validating ${source} contract...`);
if (!await validateContract(source, verbose)) {
process.exit(1);
}
Expand Down

0 comments on commit 321452f

Please sign in to comment.