Skip to content

Commit 38d8713

Browse files
author
Patrick Robinson
committed
Fix linting errors
1 parent 057430c commit 38d8713

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hooks/command

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ service_events=$(aws ecs describe-services \
182182

183183
if [[ $deploy_exitcode -eq 0 ]]; then
184184
echo "--- :ecs: Service is up 🚀"
185-
echo $service_events
185+
echo "$service_events"
186186
else
187187
echo "+++ :ecs: Service failed to deploy ❌"
188-
echo $service_events
188+
echo "$service_events"
189189
exit $deploy_exitcode
190190
fi

0 commit comments

Comments
 (0)