We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3fdcc commit 2f8a33aCopy full SHA for 2f8a33a
codeflash/code_utils/git_worktree_utils.py
@@ -93,6 +93,7 @@ def create_diff_patch_from_worktree(
93
if not uni_diff_text.endswith("\n"):
94
uni_diff_text += "\n"
95
96
+ patches_dir.mkdir(parents=True, exist_ok=True)
97
patch_path = Path(patches_dir / f"{worktree_dir.name}.{fto_name}.patch")
98
with patch_path.open("w", encoding="utf8") as f:
99
f.write(uni_diff_text)
0 commit comments