depot/third_party/nixpkgs/pkgs/tools/misc/halp/fix-target-dir.patch
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

13 lines
441 B
Diff

--- a/src/helper/args/mod.rs
+++ b/src/helper/args/mod.rs
@@ -129,9 +129,7 @@ mod tests {
/// Returns the path of the test binary.
fn get_test_bin() -> String {
- PathBuf::from(env!("CARGO_MANIFEST_DIR"))
- .join("target")
- .join("debug")
+ PathBuf::from("@releaseDir@")
.join(format!("{}-test", env!("CARGO_PKG_NAME")))
.to_string_lossy()
.to_string()