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

Commit e398e4e

Browse files
boundssladg
authored andcommitted
Fix command spacing
1 parent 216d371 commit e398e4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/cli/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const deployHandler = async ({
3737
}: Props) => {
3838
// All paths are absolute.
3939
const cdkApp = `node ${appPath}`
40-
const cdkCiFlags = `--require-approval never --ci --hotswap` + profile ? `--profile ${profile}` : ``
40+
const cdkCiFlags = `--require-approval never --ci --hotswap` + profile ? ` --profile ${profile}` : ``
4141

4242
const variables = {
4343
STACK_NAME: stackName,

lib/cli/remove.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const cdkExecutable = require.resolve('aws-cdk/bin/cdk')
1111

1212
export const removeHandler = async ({ appPath, stackName, region, profile }: Props) => {
1313
const cdkApp = `node ${appPath}`
14-
const cdkCiFlags = `--force --ci` + profile ? `--profile ${profile}` : ``
14+
const cdkCiFlags = `--force --ci` + profile ? ` --profile ${profile}` : ``
1515

1616
const variables = {
1717
STACK_NAME: stackName,

0 commit comments

Comments
 (0)