mirror of
https://github.com/denoland/deno.git
synced 2025-10-03 15:44:36 +00:00
chore: Fix broken test on Windows (#10900)
This commit is contained in:
parent
26a97a1f3b
commit
9d706d71b5
3 changed files with 6 additions and 3 deletions
|
@ -76,7 +76,10 @@ lazy_static! {
|
|||
}
|
||||
|
||||
pub fn root_path() -> PathBuf {
|
||||
PathBuf::from(concat!(env!("CARGO_MANIFEST_DIR"), "/.."))
|
||||
PathBuf::from(concat!(env!("CARGO_MANIFEST_DIR")))
|
||||
.parent()
|
||||
.unwrap()
|
||||
.to_path_buf()
|
||||
}
|
||||
|
||||
pub fn prebuilt_path() -> PathBuf {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue