summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/proc-macro-test
diff options
context:
space:
mode:
authorAmos Wenger <amoswenger@gmail.com>2022-07-26 11:53:50 +0200
committerAmos Wenger <amoswenger@gmail.com>2022-07-26 11:53:50 +0200
commit8bcd4a2b4cb2ee8299834dbf4a85906fc5b8a2a1 (patch)
treee220a7ae8c787e33cc644537d1ee4d2bef874f75 /src/tools/rust-analyzer/crates/proc-macro-test
parentb629c85bd74dfb730a3e9308312b007c0bf027cb (diff)
parente36a20c24f35a4cee82bbdc600289104c9237c22 (diff)
downloadrust-8bcd4a2b4cb2ee8299834dbf4a85906fc5b8a2a1.tar.gz
rust-8bcd4a2b4cb2ee8299834dbf4a85906fc5b8a2a1.zip
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
Diffstat (limited to 'src/tools/rust-analyzer/crates/proc-macro-test')
-rw-r--r--src/tools/rust-analyzer/crates/proc-macro-test/build.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/crates/proc-macro-test/build.rs b/src/tools/rust-analyzer/crates/proc-macro-test/build.rs
index c90144509de..a80c962617b 100644
--- a/src/tools/rust-analyzer/crates/proc-macro-test/build.rs
+++ b/src/tools/rust-analyzer/crates/proc-macro-test/build.rs
@@ -62,8 +62,7 @@ fn main() {
         Command::new(toolchain::cargo())
     };
 
-    cmd
-        .current_dir(&staging_dir)
+    cmd.current_dir(&staging_dir)
         .args(&["build", "-p", "proc-macro-test-impl", "--message-format", "json"])
         // Explicit override the target directory to avoid using the same one which the parent
         // cargo is using, or we'll deadlock.