Skip to content

Commit b6caa02

Browse files
fix: use single quotes for non-interpolated template literals (lint)
1 parent 6420ed9 commit b6caa02

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cdk/src/handlers/shared/strategies/ec2-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ export class Ec2ComputeStrategy implements ComputeStrategy {
153153
'cleanup() {',
154154
' docker system prune -f || true',
155155
' rm -f /tmp/payload.json',
156-
` aws ec2 create-tags --resources "$INSTANCE_ID" --region "$AWS_REGION" --tags Key=bgagent:status,Value=idle || true`,
157-
` aws ec2 delete-tags --resources "$INSTANCE_ID" --region "$AWS_REGION" --tags Key=bgagent:task-id || true`,
156+
' aws ec2 create-tags --resources "$INSTANCE_ID" --region "$AWS_REGION" --tags Key=bgagent:status,Value=idle || true',
157+
' aws ec2 delete-tags --resources "$INSTANCE_ID" --region "$AWS_REGION" --tags Key=bgagent:task-id || true',
158158
'}',
159159
'trap cleanup EXIT',
160160
'',

0 commit comments

Comments
 (0)