From 9d45988bb3023c343da143f78f79d58d19c423f0 Mon Sep 17 00:00:00 2001 From: hocine BENKHADRA Date: Tue, 6 Aug 2024 13:37:10 +0200 Subject: [PATCH] fix(docker-ubuntu-rust-install.sh): Add env --- .github/docker-ubuntu-rust-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/docker-ubuntu-rust-install.sh b/.github/docker-ubuntu-rust-install.sh index a53d664..005fe75 100644 --- a/.github/docker-ubuntu-rust-install.sh +++ b/.github/docker-ubuntu-rust-install.sh @@ -4,6 +4,8 @@ target=${1:-''} curl https://sh.rustup.rs -sSf | bash -s -- -y +. "$HOME/.cargo/env" + sudo apt install musl-tools -y rustup target add $target