From b76d3f2b40286ec683af0b4ca34281511d7b1c69 Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Mon, 13 Jun 2022 18:19:57 -0700 Subject: [PATCH] chore: fix publish_docker.sh (#14851) Started failing a few days ago (https://github.com/microsoft/playwright/runs/6871909784?check_suite_focus=true) with: ``` ./utils/docker/publish_docker.sh: line 82: syntax error near unexpected token `else' ``` --- utils/docker/publish_docker.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/docker/publish_docker.sh b/utils/docker/publish_docker.sh index 8c638530fd..5652e9fbe8 100755 --- a/utils/docker/publish_docker.sh +++ b/utils/docker/publish_docker.sh @@ -78,7 +78,6 @@ publish_docker_images_with_arch_suffix() { TAGS=("${FOCAL_TAGS[@]}") elif [[ "$FLAVOR" == "jammy" ]]; then TAGS=("${JAMMY_TAGS[@]}") - else else echo "ERROR: unknown flavor - $FLAVOR. Must be either 'bionic' or 'focal'" exit 1