Compare commits

...

1 Commits

Author SHA1 Message Date
Channing Conger
bed957cb23 Fix issue with env resolution 2026-03-19 13:37:30 -07:00

View File

@@ -36,7 +36,7 @@ pub(crate) struct ExecServerFileSystem {
impl Default for ExecServerFileSystem {
fn default() -> Self {
Self {
file_system: Arc::new(Environment.get_filesystem()),
file_system: Arc::new(Environment::default().get_filesystem()),
}
}
}