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 5c804e1 commit 1be1eefCopy full SHA for 1be1eef
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