Skip to content

Commit c25bbef

Browse files
committed
fix
1 parent af03871 commit c25bbef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Github/Runners/debian-builder-unstable.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ RUN <<EOS
163163
cd "$(mktemp -d)" >/dev/null 2>&1 ; realpath .
164164
curl -qfsSL "https://sh.rustup.rs" -o "./install.sh"
165165
dos2unix --quiet "./install.sh" && chmod +x "./install.sh"
166-
bash "./install.sh" -y 2>/dev/null || true
166+
bash "./install.sh" --no-modify-path -y 2>/dev/null || true
167167
rm -rf "$(realpath .)" ; cd "${CWD}"
168168
#----------------------#
169169
#Zig

Github/Runners/gentoo-builder.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ RUN <<EOS
430430
cd "$(mktemp -d)" >/dev/null 2>&1 ; realpath .
431431
curl -qfsSL "https://sh.rustup.rs" -o "./install.sh"
432432
dos2unix --quiet "./install.sh" && chmod +x "./install.sh"
433-
bash "./install.sh" -y 2>/dev/null || true
433+
bash "./install.sh" --no-modify-path -y 2>/dev/null || true
434434
rm -rf "$(realpath .)" ; cd "${CWD}"
435435
fi
436436
#----------------------#

Github/Runners/ubuntu-builder.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ RUN <<EOS
181181
cd "$(mktemp -d)" >/dev/null 2>&1 ; realpath .
182182
curl -qfsSL "https://sh.rustup.rs" -o "./install.sh"
183183
dos2unix --quiet "./install.sh" && chmod +x "./install.sh"
184-
bash "./install.sh" -y 2>/dev/null || true
184+
bash "./install.sh" --no-modify-path -y 2>/dev/null || true
185185
rm -rf "$(realpath .)" ; cd "${CWD}"
186186
#----------------------#
187187
#Zig

0 commit comments

Comments
 (0)