From 11efb73f4ad1f825c2f85f8fa0a32e95856cf21a Mon Sep 17 00:00:00 2001 From: Devin Binnie <52460000+devinbinnie@users.noreply.github.com> Date: Thu, 22 May 2025 15:58:59 -0400 Subject: [PATCH] Don't require the update file to exist (#3436) --- scripts/patch_updater_yml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch_updater_yml.sh b/scripts/patch_updater_yml.sh index 8186afbd..a90283e1 100755 --- a/scripts/patch_updater_yml.sh +++ b/scripts/patch_updater_yml.sh @@ -17,7 +17,7 @@ NEXT_MAJOR_VERSION="$(npx semver $STABLE_VERSION -i major)" NEWER_VERSION_EXISTS="$(git ls-remote --tags origin v${NEXT_MINOR_VERSION} v${NEXT_MAJOR_VERSION})" if [ -e .esr ] && [ ! -z "$NEWER_VERSION_EXISTS" ]; then echo "ESR branch, skipping auto-updater yml generation" - rm ./release/"${RELEASE_VERSION}"*.yml + rm ./release/"${RELEASE_VERSION}"*.yml || true exit 0 fi