From 25089760fdd70467480e806137ce011395214dbd Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 4 Aug 2020 00:02:14 -0700 Subject: [PATCH] devops: fix typo in rustup detection (#3282) This should bring back docker build. --- browser_patches/firefox/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_patches/firefox/build.sh b/browser_patches/firefox/build.sh index 6fc62d3747..5c388f9aa0 100755 --- a/browser_patches/firefox/build.sh +++ b/browser_patches/firefox/build.sh @@ -44,8 +44,8 @@ echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig if [[ $1 == "--juggler" ]]; then ./mach build faster else - # TODO: rust is not in the PATH on Windows - if command -v rust >/dev/null; then + # TODO: rustup is not in the PATH on Windows + if command -v rustup >/dev/null; then # We manage Rust version ourselves. echo "-- Using rust v${RUST_VERSION}" rustup default "${RUST_VERSION}"