From c67b56cfc4d59539474b29a8d4486ea46a57f031 Mon Sep 17 00:00:00 2001 From: xli-oai Date: Wed, 15 Apr 2026 20:02:50 -0700 Subject: [PATCH] Fix marketplace git clone lint --- codex-rs/core-plugins/src/loader.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/codex-rs/core-plugins/src/loader.rs b/codex-rs/core-plugins/src/loader.rs index 4e4879910c..3f235183d4 100644 --- a/codex-rs/core-plugins/src/loader.rs +++ b/codex-rs/core-plugins/src/loader.rs @@ -879,7 +879,10 @@ fn clone_git_plugin_source( sha: Option<&str>, destination: &Path, ) -> Result<(), String> { - run_git(&["clone", url, destination.to_string_lossy().as_ref()], None)?; + run_git( + &["clone", url, destination.to_string_lossy().as_ref()], + /*cwd*/ None, + )?; if let Some(target) = sha.or(ref_name) { run_git(&["checkout", target], Some(destination))?; }