Skip to content

Commit

Permalink
Bash syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanHilt committed Jan 16, 2025
1 parent 3bdfcac commit 2a3b9d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kube/services/argo-events/workflows/sensor-created.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ spec:
ENVIRONMENT_TYPE_CODE="production"
elif [ "$ENVIRONMENT" = "va-testing" ]; then
ENVIRONMENT_TYPE_CODE="testing"
else;
ENVIRONMENT_TYPE_CODE="environment"
else
ENVIRONMENT_TYPE_CODE="$ENVIRONMENT"
fi
if [ -z "$NODEPOOL_TEMPLATE" ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
ENVIRONMENT_TYPE_CODE="production"
elif [ "$ENVIRONMENT" = "va-testing" ]; then
ENVIRONMENT_TYPE_CODE="testing"
else;
else
ENVIRONMENT_TYPE_CODE="environment"
fi
Expand Down

0 comments on commit 2a3b9d6

Please sign in to comment.