mirror of
https://github.com/openai/codex.git
synced 2026-04-30 09:26:44 +00:00
Use AbsolutePathBuf in skill loading and codex_home (#17407)
Helps with FS migration later
This commit is contained in:
@@ -534,7 +534,7 @@ async fn spawn_agent_role_overrides_requested_model_and_reasoning_settings() ->
|
||||
"custom".to_string(),
|
||||
AgentRoleConfig {
|
||||
description: Some("Custom role".to_string()),
|
||||
config_file: Some(role_path),
|
||||
config_file: Some(role_path.to_path_buf()),
|
||||
nickname_candidates: None,
|
||||
},
|
||||
);
|
||||
@@ -582,7 +582,7 @@ async fn spawn_agent_tool_description_mentions_role_locked_settings() -> Result<
|
||||
"custom".to_string(),
|
||||
AgentRoleConfig {
|
||||
description: Some("Custom role".to_string()),
|
||||
config_file: Some(role_path),
|
||||
config_file: Some(role_path.to_path_buf()),
|
||||
nickname_candidates: None,
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user