Skip to content

Commit

Permalink
fix(cli): postDeploy uses correct kms flag (#2769)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaaa authored Apr 30, 2024
1 parent 428ff97 commit 3ffd69b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/runDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export async function runDeploy(opts: DeployOptions): Promise<WorldDeploy> {
rpc,
profile,
opts.forgeScriptOptions,
opts.awsKmsKeyId !== undefined,
opts.kms ? true : false,
);
}
console.log(chalk.green("Deployment completed in", (Date.now() - startTime) / 1000, "seconds"));
Expand Down

0 comments on commit 3ffd69b

Please sign in to comment.