From 5d3d7b0fc3f249cb7b3916631136bc25fdcb7c5d Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Sat, 23 May 2026 06:43:27 +0200 Subject: [PATCH] [RelEng] Handle absence of eclipse_lg images in release preparation The eclipse_lg*.png images are usually the same for multiple releases and a 'future' version therefore often does not exist. --- prepareNextDevCycle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepareNextDevCycle.sh b/prepareNextDevCycle.sh index 4102f55cc6c..49b0bcadb25 100755 --- a/prepareNextDevCycle.sh +++ b/prepareNextDevCycle.sh @@ -36,7 +36,7 @@ for plugin in "${brandingPlugins[@]}"; do fi done rm "org.eclipse.platform/futureSplashScreens/splash_${NEXT_RELEASE_NAME}.png" -rm org.eclipse.platform/futureSplashScreens/eclipse_lg*.png +rm -f org.eclipse.platform/futureSplashScreens/eclipse_lg*.png popd git commit --all --message "Splash Screen for ${NEXT_RELEASE_VERSION} (${NEXT_RELEASE_NAME})"