From 14bf293594064ce52bc991d472807bd5d24cf71e Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 27 Jul 2022 05:07:33 -0700 Subject: [PATCH] devops: fix quotes in docker_build.sh script (#15989) --- browser_patches/docker_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_patches/docker_build.sh b/browser_patches/docker_build.sh index 40025e1e86..b8a952f427 100755 --- a/browser_patches/docker_build.sh +++ b/browser_patches/docker_build.sh @@ -162,7 +162,7 @@ function ensure_docker_container { if [[ "${BUILD_FLAVOR}" == "firefox-"* ]]; then # install rust as a pwuser - su -l pwuser -c 'curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y' + su -l pwuser -c "curl --proto \"=https\" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y" echo "PATH=\"${PATH}:/home/pwuser/.cargo/bin\"" > /etc/environment elif [[ "${BUILD_FLAVOR}" == "webkit-ubuntu-18.04" ]]; then # Ubuntu 18.04 specific: update CMake. Default CMake on Ubuntu 18.04 is 3.10, whereas WebKit requires 3.12+.