Skip to content

Commit 35195f5

Browse files
committed
change download-ci-llvm default from if-unchanged to true
Signed-off-by: onur-ozkan <[email protected]>
1 parent 60c3673 commit 35195f5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/bootstrap/src/core/config/config.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2761,9 +2761,7 @@ impl Config {
27612761
};
27622762

27632763
match download_ci_llvm {
2764-
None => {
2765-
(self.channel == "dev" || self.download_rustc_commit.is_some()) && if_unchanged()
2766-
}
2764+
None => self.channel == "dev" || self.download_rustc_commit.is_some(),
27672765
Some(StringOrBool::Bool(b)) => {
27682766
if !b && self.download_rustc_commit.is_some() {
27692767
panic!(

0 commit comments

Comments
 (0)