1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

bleh, fix unix build

refs: https://github.com/wez/wezterm/issues/2991
This commit is contained in:
Wez Furlong 2023-01-21 15:46:52 -07:00
parent 27ae47d996
commit 36bf634e93
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -72,7 +72,7 @@ struct CachedLeaderInfo {
updated: Instant,
fd: std::os::fd::RawFd,
pid: u32,
path: Option<std::path::PathBuf>;
path: Option<std::path::PathBuf>,
current_working_dir: Option<std::path::PathBuf>,
updating: bool,
}
@ -473,7 +473,7 @@ impl Pane for LocalPane {
if let Some(path) = &leader.path {
return Some(path.to_string_lossy().to_string());
}
None
return None
}
#[cfg(windows)]