diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-01 22:41:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-01 22:41:20 +0000 |
commit | 6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0 (patch) | |
tree | bd2c870aea77c683e0725a59d1c8ce1f817dba7d /winpty | |
parent | 5523f64c6f939ced94d55c569f592320442e8eb9 (diff) | |
download | alacritty-6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0.tar.gz alacritty-6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0.zip |
Add official logov0.3.0-rc2
Diffstat (limited to 'winpty')
-rw-r--r-- | winpty/build.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winpty/build.rs b/winpty/build.rs index 0ab379b8..a0742a11 100644 --- a/winpty/build.rs +++ b/winpty/build.rs @@ -5,10 +5,10 @@ fn main() { // The working directory for `cargo test` is in the deps folder, not the debug/release root if cfg!(test) && Path::new("target").exists() { #[cfg(debug_assertions)] - copy("../assets/windows/x86_64/winpty-agent.exe", "target/debug/deps/winpty-agent.exe") + copy("../extra/windows/x86_64/winpty-agent.exe", "target/debug/deps/winpty-agent.exe") .unwrap(); #[cfg(not(debug_assertions))] - copy("../assets/windows/x86_64/winpty-agent.exe", "target/release/deps/winpty-agent.exe") + copy("../extra/windows/x86_64/winpty-agent.exe", "target/release/deps/winpty-agent.exe") .unwrap(); } } |