devops: fix quotes in docker_build.sh script (#15989)
This commit is contained in:
parent
c22d9b6b09
commit
14bf293594
|
|
@ -162,7 +162,7 @@ function ensure_docker_container {
|
||||||
|
|
||||||
if [[ "${BUILD_FLAVOR}" == "firefox-"* ]]; then
|
if [[ "${BUILD_FLAVOR}" == "firefox-"* ]]; then
|
||||||
# install rust as a pwuser
|
# 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
|
echo "PATH=\"${PATH}:/home/pwuser/.cargo/bin\"" > /etc/environment
|
||||||
elif [[ "${BUILD_FLAVOR}" == "webkit-ubuntu-18.04" ]]; then
|
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+.
|
# Ubuntu 18.04 specific: update CMake. Default CMake on Ubuntu 18.04 is 3.10, whereas WebKit requires 3.12+.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue