Skip to content

Commit

Permalink
Fix array
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydrogers committed Dec 10, 2024
1 parent 4bb5a52 commit dad2f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/actions/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ action_deploy() {
fi

# Build and push each Dockerfile
for dockerfile in $dockerfiles; do
for dockerfile in "${dockerfiles[@]}"; do
# Generate variable name based on Dockerfile name
var_name=$(echo "$dockerfile" | tr '[:lower:].' '[:upper:]_')
var_name="SPIN_IMAGE_${var_name}"
Expand Down

0 comments on commit dad2f1d

Please sign in to comment.