From bff9fb21ec481f5eabe881bdbaba9466e043e848 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 18 Sep 2020 11:30:53 -0600 Subject: [PATCH] devops: fix winldd build --- browser_patches/prepare_checkout.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/browser_patches/prepare_checkout.sh b/browser_patches/prepare_checkout.sh index 43345a427a..6d06370897 100755 --- a/browser_patches/prepare_checkout.sh +++ b/browser_patches/prepare_checkout.sh @@ -39,6 +39,9 @@ if [[ ("$1" == "chromium") || ("$1" == "chromium/") || ("$1" == "cr") ]]; then elif [[ ("$1" == "ffmpeg") || ("$1" == "ffmpeg/") ]]; then echo "FYI: ffmpeg checkout is not supported. Use '//browser_patches/ffmpeg/build.sh' instead" exit 0 +elif [[ ("$1" == "winldd") || ("$1" == "winldd/") ]]; then + echo "FYI: winldd source code is available right away" + exit 0 elif [[ ("$1" == "firefox") || ("$1" == "firefox/") || ("$1" == "ff") ]]; then FRIENDLY_CHECKOUT_PATH="//browser_patches/firefox/checkout"; CHECKOUT_PATH="$PWD/firefox/checkout"