mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
fix(operations): thread git checkpoint options through RunOptions
RunOptions.git was hardcoded to None in run_engine(), relying on initialize to overwrite it from InitOptions.git. Pass options.git directly for consistency — initialize still owns the final decision (clearing it on worktree failure). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
8e51d9c29b
commit
b970fdef2b
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ async fn run_engine(
|
|||
.map(std::path::PathBuf::from),
|
||||
base_branch: record.base_branch.clone(),
|
||||
display_base_sha: None,
|
||||
git: None,
|
||||
git: options.git.clone(),
|
||||
};
|
||||
|
||||
let last_git_sha: Arc<Mutex<Option<String>>> = Arc::new(Mutex::new(None));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue