search for roc.exe on windows

This commit is contained in:
Folkert 2022-10-30 12:51:17 +01:00
parent 3865d94fb4
commit ef9f2a4bdc
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -74,7 +74,7 @@ where
}
pub fn path_to_roc_binary() -> PathBuf {
path_to_binary("roc")
path_to_binary(if cfg!(windows) { "roc.exe" } else { "roc" })
}
pub fn path_to_binary(binary_name: &str) -> PathBuf {