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 057beb4 commit e744187Copy full SHA for e744187
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