Skip to content

Commit

Permalink
devops: fix post-checkout cleanup on windows (#5438)
Browse files Browse the repository at this point in the history
Turns out empty trailing space in array in bash results in a file
in windows that it fails to remove while during cleanup.
  • Loading branch information
aslushnikov committed Feb 12, 2021
1 parent 539942c commit 8500592
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser_patches/chromium/build.sh
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 8500592

Please sign in to comment.