Skip to content

Commit

Permalink
deploy.sh: still support arm32v6 if the Dockerfile exists
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Feb 8, 2024
1 parent a686528 commit 1a129ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ PUSHED_MANIFESTS=()

args=()

if test -e Dockerfile.arm32v6; then
ARCHS+=(arm32v6)
fi

while [ "$#" -gt 0 ]; do
key="$1"
case "${key}" in
Expand Down

0 comments on commit 1a129ea

Please sign in to comment.