Skip to content

Commit c5f1902

Browse files
committed
Fix syntax
1 parent 7500ac4 commit c5f1902

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • .github/actions/task-processor-deploy-ecs

.github/actions/task-processor-deploy-ecs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runs:
6363
--services ${{ inputs.aws_ecs_service_name }} \
6464
--query 'services[0].deployments[?status==`PRIMARY`].taskDefinition' \
6565
--output text)
66-
if [[ "$RUNNING_TASK_DEF" == "$EXPECTED_TASK_DEF" && ]]; then
66+
if [[ "$RUNNING_TASK_DEF" == "$EXPECTED_TASK_DEF" ]]; then
6767
exit 0
6868
else
6969
echo "Task definition mismatch detected"

0 commit comments

Comments
 (0)