Unnamed repository; edit this file 'description' to name the repository.
collapsible_if
Johann Hemmann 2024-01-30
parent 11b401d · commit 75a42f1
-rw-r--r--crates/proc-macro-srv/proc-macro-test/build.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/proc-macro-srv/proc-macro-test/build.rs b/crates/proc-macro-srv/proc-macro-test/build.rs
index c9b605a808..ff62980e4f 100644
--- a/crates/proc-macro-srv/proc-macro-test/build.rs
+++ b/crates/proc-macro-srv/proc-macro-test/build.rs
@@ -109,11 +109,11 @@ fn main() {
let mut artifact_path = None;
for message in Message::parse_stream(output.stdout.as_slice()) {
if let Message::CompilerArtifact(artifact) = message.unwrap() {
- if artifact.target.kind.contains(&"proc-macro".to_string()) {
- if artifact.package_id.repr.starts_with(&repr) || artifact.package_id.repr == pkgid
- {
- artifact_path = Some(PathBuf::from(&artifact.filenames[0]));
- }
+ if artifact.target.kind.contains(&"proc-macro".to_string())
+ && (artifact.package_id.repr.starts_with(&repr)
+ || artifact.package_id.repr == pkgid)
+ {
+ artifact_path = Some(PathBuf::from(&artifact.filenames[0]));
}
}
}