From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" Date: Thu, 6 May 2021 20:13:31 +0200 Subject: [PATCH] cargo: Change libexec dir --- src/cargo/util/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/util/auth.rs b/src/cargo/util/auth.rs index d67f874f132b..407da5a2538d 100644 --- a/src/cargo/util/auth.rs +++ b/src/cargo/util/auth.rs @@ -476,7 +476,7 @@ fn sysroot_credential( .parent() .and_then(|p| p.parent()) .ok_or_else(|| format_err!("expected cargo path {}", cargo.display()))?; - let exe = root.join("libexec").join(format!( + let exe = root.join("lib").join(format!( "cargo-credential-{}{}", cred_name, std::env::consts::EXE_SUFFIX