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 dacabc5 commit 11cd8c3Copy full SHA for 11cd8c3
apply.ts
@@ -126,7 +126,7 @@ export const markThatApplied = (pathToStackedRebaseDirInsideDotGit: string): voi
126
[getPaths(pathToStackedRebaseDirInsideDotGit)].map(
127
({ rewrittenListPath, needsToApplyPath, appliedPath }) => (
128
fs.existsSync(needsToApplyPath) && fs.unlinkSync(needsToApplyPath), //
129
- fs.copyFileSync(rewrittenListPath, appliedPath),
+ fs.renameSync(rewrittenListPath, appliedPath),
130
void 0
131
)
132
)[0];
0 commit comments