From 850059232619e180d3bdc43ff1b8ebede0784456 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 12 Feb 2021 01:48:11 -0800 Subject: [PATCH] devops: fix post-checkout cleanup on windows (#5438) Turns out empty trailing space in array in bash results in a file in windows that it fails to remove while during cleanup. --- browser_patches/chromium/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_patches/chromium/build.sh b/browser_patches/chromium/build.sh index b47f44c041..bde1d06481 100755 --- a/browser_patches/chromium/build.sh +++ b/browser_patches/chromium/build.sh @@ -71,7 +71,7 @@ compile_chromium() { CHROMIUM_FILES_TO_ARCHIVE=("Chromium.app") elif [[ $1 == "--compile-linux" ]]; then CHROMIUM_FOLDER_NAME="chrome-linux" - CHROMIUM_FILES_TO_ARCHIVE=( + CHROMIUM_FILES_TO_ARCHIVE=( "chrome" "chrome_100_percent.pak" "chrome_200_percent.pak" @@ -98,7 +98,7 @@ compile_chromium() { ) elif [[ $1 == "--compile-win"* ]]; then CHROMIUM_FOLDER_NAME="chrome-win" - CHROMIUM_FILES_TO_ARCHIVE=( + CHROMIUM_FILES_TO_ARCHIVE=( "chrome.dll" "chrome.exe" "chrome_100_percent.pak"