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.
Buffer
.equals
===
1 parent 26274fe commit 5a66ea6Copy full SHA for 5a66ea6
apply.ts
@@ -143,7 +143,7 @@ const doesNeedToApply = (pathToStackedRebaseDirInsideDotGit: string): boolean =>
143
? /**
144
* check if has been applied, but that apply is outdated
145
*/
146
- fs.readFileSync(appliedPath) !== fs.readFileSync(rewrittenListPath)
+ !fs.readFileSync(appliedPath).equals(fs.readFileSync(rewrittenListPath))
147
: false;
148
149
return needsToApplyPart2;
0 commit comments