mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
Signed-off-by: nibon7 <nibon7@163.com>
This commit is contained in:
parent
b69cda9e07
commit
82b6300dcb
@ -246,10 +246,15 @@ pub fn root() -> PathBuf {
|
||||
}
|
||||
|
||||
pub fn binaries() -> PathBuf {
|
||||
let mut build_type = "debug";
|
||||
if !cfg!(debug_assertions) {
|
||||
build_type = "release"
|
||||
}
|
||||
|
||||
std::env::var("CARGO_TARGET_DIR")
|
||||
.ok()
|
||||
.map(|target_dir| PathBuf::from(target_dir).join("debug"))
|
||||
.unwrap_or_else(|| root().join("target/debug"))
|
||||
.map(|target_dir| PathBuf::from(target_dir).join(&build_type))
|
||||
.unwrap_or_else(|| root().join(format!("target/{}", &build_type)))
|
||||
}
|
||||
|
||||
pub fn fixtures() -> PathBuf {
|
||||
|
Loading…
Reference in New Issue
Block a user