Skip to content

Commit 8b06850

Browse files
committed
rust-installer: include RUSTC_BOOTSTRAP when generating installer
1 parent 1f8e8fe commit 8b06850

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/tools/rust-installer/combine-installers.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ abs_path() {
1111
(unset CDPATH && cd "$path" > /dev/null && pwd)
1212
}
1313

14+
export RUSTC_BOOTSTRAP=1
15+
1416
src_dir="$(abs_path $(dirname "$0"))"
1517
$CARGO run --manifest-path="$src_dir/Cargo.toml" -- combine "$@"

src/tools/rust-installer/gen-installer.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ abs_path() {
1111
(unset CDPATH && cd "$path" > /dev/null && pwd)
1212
}
1313

14+
export RUSTC_BOOTSTRAP=1
15+
1416
src_dir="$(abs_path $(dirname "$0"))"
1517
$CARGO run --manifest-path="$src_dir/Cargo.toml" -- generate "$@"

src/tools/rust-installer/make-tarballs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ abs_path() {
1111
(unset CDPATH && cd "$path" > /dev/null && pwd)
1212
}
1313

14+
export RUSTC_BOOTSTRAP=1
15+
1416
src_dir="$(abs_path $(dirname "$0"))"
1517
$CARGO run --manifest-path="$src_dir/Cargo.toml" -- tarball "$@"

0 commit comments

Comments
 (0)