add missing import for windows

This commit is contained in:
Brendan Hansknecht 2023-04-25 08:55:23 -07:00
parent f9f7a1a3e8
commit e2868fa5fc
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -77,7 +77,7 @@ pub fn get_relative_path(sub_path: &Path) -> Option<PathBuf> {
if let Some(exe_relative_str_path) = exe_relative_str_path_opt {
#[cfg(windows)]
let exe_relative_str_path = strip_windows_prefix(&exe_relative_str_path);
let exe_relative_str_path = roc_command_utils::strip_windows_prefix(&exe_relative_str_path);
let mut curr_parent_opt = exe_relative_str_path.parent();