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 ba766f9 commit 02fcef4Copy full SHA for 02fcef4
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