Skip to content
Snippets Groups Projects
Unverified Commit ea51bbf9 authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

pallet-revive-fixtures: Support compilation on stable (#7419)


Let's burry out the old `RUSTC_BOOTSTRAP` hack. This is required when
you don't use `rustup` which automatically switches to the nightly
toolchain when it detects nightly CLI args.

Co-authored-by: default avatarAlexander Theißen <alex.theissen@me.com>
parent 10b77c95
No related merge requests found
Pipeline #514842 waiting for manual action with stages
in 30 minutes and 46 seconds
......@@ -127,6 +127,8 @@ fn invoke_build(current_dir: &Path) -> Result<()> {
.env("PATH", env::var("PATH").unwrap_or_default())
.env("CARGO_ENCODED_RUSTFLAGS", encoded_rustflags)
.env("RUSTUP_HOME", env::var("RUSTUP_HOME").unwrap_or_default())
// Support compilation on stable rust
.env("RUSTC_BOOTSTRAP", "1")
.args([
"build",
"--release",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment