Skip to content

Commit

Permalink
chore: 🤖 code format
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 4, 2024
1 parent 5dbb519 commit e583da4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/commands/functions/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ const deployAction: SdkGuardedFunction<DeployActionArgs> = async ({

await sdk
.functions()
.deploy({ functionId: functionToDeploy.id, cid: uploadResult.pin.cid, sgx });
.deploy({
functionId: functionToDeploy.id,
cid: uploadResult.pin.cid,
sgx,
});

output.success(t('commonNameCreateSuccess', { name: 'deployment' }));
output.printNewLine();
Expand Down
2 changes: 1 addition & 1 deletion src/commands/functions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default (program: Command) => {
private: options.private,
env: options.env ?? [],
envFile: options.envFile,
sgx: options.sgx
sgx: options.sgx,
}),
);

Expand Down

0 comments on commit e583da4

Please sign in to comment.