mirror of
https://github.com/openai/codex.git
synced 2026-04-28 18:32:04 +03:00
Fix exec-server local filesystem compile path
Apply the pending formatting reorderings and switch the server-side filesystem default to LocalFileSystem so the current PR compiles again. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -22,8 +22,8 @@ use codex_app_server_protocol::JSONRPCErrorError;
|
||||
|
||||
use crate::CopyOptions;
|
||||
use crate::CreateDirectoryOptions;
|
||||
use crate::Environment;
|
||||
use crate::ExecutorFileSystem;
|
||||
use crate::LocalFileSystem;
|
||||
use crate::RemoveOptions;
|
||||
use crate::rpc::internal_error;
|
||||
use crate::rpc::invalid_request;
|
||||
@@ -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(LocalFileSystem),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user