Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit b905bf9

Browse files
author
Bender
committed
fix(cdk): remove unncessary flag
1 parent 306e7db commit b905bf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/cli/deploy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const deployHandler = async ({ stackName, tsconfigPath, appPath }: Props)
1313
// NPX so ts-node does not need to be a dependency.
1414
// All paths are absolute.
1515
const cdkApp = `npx ts-node --project ${tsconfigPath} ${appPath}`
16-
const cdkCiFlags = `--all --require-approval never --ci`
16+
const cdkCiFlags = `--require-approval never --ci`
1717

1818
await executeAsyncCmd({
1919
cmd: `STACK_NAME=${stackName} ${cdkExecutable} deploy --app "${cdkApp}" ${cdkCiFlags}`,

0 commit comments

Comments
 (0)