Skip to content

Commit 7918df5

Browse files
authored
Rollup merge of #108963 - jhheider:fix-CI-non-git-builds, r=albertlarsan68
only call git on git checkouts during bootstrap fixes #108959
2 parents 671339c + 54e5c19 commit 7918df5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/native.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ pub(crate) fn is_ci_llvm_available(config: &Config, asserts: bool) -> bool {
216216

217217
/// Returns true if we're running in CI with modified LLVM (and thus can't download it)
218218
pub(crate) fn is_ci_llvm_modified(config: &Config) -> bool {
219-
CiEnv::is_ci() && {
219+
CiEnv::is_ci() && config.rust_info.is_managed_git_subrepository() && {
220220
// We assume we have access to git, so it's okay to unconditionally pass
221221
// `true` here.
222222
let llvm_sha = detect_llvm_sha(config, true);

0 commit comments

Comments
 (0)