Skip to content

Commit

Permalink
Fixing if
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Dec 8, 2020
1 parent ba5c026 commit 1a2a47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.sh
Expand Up @@ -48,7 +48,7 @@ if [ -z "$SKIP_ECS" ]; then
echo "Deploying to ECS"
docker run --rm -v ~/.aws:/root/.aws $CREDENTIALS amazon/aws-cli:$AWS_CLI_TAG ecs update-service --cluster $CLUSTER \
--service $SERVICE --force-new-deployment --region $REGION
if [ "$SERVICE" -eq "ocl_api" ]; then
if [ "$SERVICE" == "ocl_api" ]; then
echo "Deploying OCL API"
docker run --rm -v ~/.aws:/root/.aws $CREDENTIALS amazon/aws-cli:$AWS_CLI_TAG ecs update-service --cluster $CLUSTER \
--service "ocl_celery" --force-new-deployment --region $REGION
Expand Down

0 comments on commit 1a2a47b

Please sign in to comment.