mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-04 17:35:48 +03:00
devops: fix mingw detection (#13326)
This commit is contained in:
parent
e31a5b690a
commit
2ee3e9b74f
@ -52,7 +52,7 @@ elif [[ $(uname) == "Linux" ]]; then
|
||||
CHROMIUM_FOLDER_NAME="chrome-linux"
|
||||
IFS=$'\n' CHROMIUM_FILES_TO_ARCHIVE=($(node "${SCRIPT_PATH}/compute_files_to_archive.js" "${CR_CHECKOUT_PATH}/src/infra/archive_config/linux-archive-rel.json"))
|
||||
unset IFS
|
||||
elif [[ $(uname) == "MINGW" || "$(uname)" == MSYS* ]]; then
|
||||
elif [[ $(uname) == "MINGW"* || "$(uname)" == MSYS* ]]; then
|
||||
CHROMIUM_FOLDER_NAME="chrome-win"
|
||||
IFS=$'\n\r' CHROMIUM_FILES_TO_ARCHIVE=($(node "${SCRIPT_PATH}/compute_files_to_archive.js" "${CR_CHECKOUT_PATH}/src/infra/archive_config/win-archive-rel.json"))
|
||||
unset IFS
|
||||
@ -78,7 +78,7 @@ for ((i = 0; i < ${#CHROMIUM_FILES_TO_ARCHIVE[@]}; i++)) do
|
||||
$COPY_COMMAND "${CR_CHECKOUT_PATH}/src/out/Default/${file}" "output/${CHROMIUM_FOLDER_NAME}/${file}"
|
||||
done
|
||||
|
||||
if [[ $(uname) == "MINGW" || "$(uname)" == MSYS* ]]; then
|
||||
if [[ $(uname) == "MINGW"* || "$(uname)" == MSYS* ]]; then
|
||||
$COPY_COMMAND "${CR_CHECKOUT_PATH}/src/out/Default/"*.manifest "output/${CHROMIUM_FOLDER_NAME}/"
|
||||
mkdir -p "output/${CHROMIUM_FOLDER_NAME}/locales"
|
||||
$COPY_COMMAND "${CR_CHECKOUT_PATH}/src/out/Default/locales/"*.pak "output/${CHROMIUM_FOLDER_NAME}/locales/"
|
||||
|
@ -95,7 +95,7 @@ compile_chromium() {
|
||||
fi
|
||||
|
||||
TARGETS="${args[@]}"
|
||||
if [[ $(uname) == "MINGW" || "$(uname)" == MSYS* ]]; then
|
||||
if [[ $(uname) == "MINGW"* || "$(uname)" == MSYS* ]]; then
|
||||
if [[ -n "$TARGETS" ]]; then
|
||||
echo "ERROR: cannot compile custom targets on windows yet."
|
||||
echo "Requested to compile chromium targets - ${TARGETS}"
|
||||
|
Loading…
Reference in New Issue
Block a user