Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
DEFINITON -> DEFINITION
  • Loading branch information
damireh committed Dec 16, 2017
1 parent 0ab06b2 commit 3f0ec95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecs-deploy
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ function assertRequiredArgumentsSet() {
fi

if [ $SERVICE == false ] && [ $TASK_DEFINITION == false ]; then
echo "One of SERVICE or TASK DEFINITON is required. You can pass the value using -n / --service-name for a service, or -d / --task-definition for a task"
echo "One of SERVICE or TASK DEFINITION is required. You can pass the value using -n / --service-name for a service, or -d / --task-definition for a task"
exit 5
fi
if [ $SERVICE != false ] && [ $TASK_DEFINITION != false ]; then
echo "Only one of SERVICE or TASK DEFINITON may be specified, but you supplied both"
echo "Only one of SERVICE or TASK DEFINITION may be specified, but you supplied both"
exit 6
fi
if [ $SERVICE != false ] && [ $CLUSTER == false ]; then
Expand Down

0 comments on commit 3f0ec95

Please sign in to comment.