depot/third_party/nixpkgs/pkgs/by-name/ha/halp/fix-target-dir.patch

14 lines
441 B
Diff
Raw Normal View History

--- 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()