diff --git a/src/commands/functions/deploy.ts b/src/commands/functions/deploy.ts index dace616..926e3e3 100644 --- a/src/commands/functions/deploy.ts +++ b/src/commands/functions/deploy.ts @@ -113,7 +113,11 @@ const deployAction: SdkGuardedFunction = 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(); diff --git a/src/commands/functions/index.ts b/src/commands/functions/index.ts index a77bc2a..70fdab2 100644 --- a/src/commands/functions/index.ts +++ b/src/commands/functions/index.ts @@ -83,7 +83,7 @@ export default (program: Command) => { private: options.private, env: options.env ?? [], envFile: options.envFile, - sgx: options.sgx + sgx: options.sgx, }), );