From bcb81e3e3f65ad4b7175e20a3b34d393c563a3ef Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Wed, 1 Mar 2023 12:11:51 -0700
Subject: [PATCH] GitLab CI: Set PATH to include rustup before bootstrap

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c60a9bfe6..6e9582edd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,8 +10,8 @@ img:
         apt-get update -qq &&
         apt-get install -qq -y curl &&
         curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none &&
-        ./bootstrap.sh -d &&
         source "$HOME/.cargo/env" &&
+        ./bootstrap.sh -d &&
         make ci-img IMG_TAG=$CI_COMMIT_REF_NAME
     artifacts:
         paths:
-- 
GitLab