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 7fd17f6 commit 9c251c9Copy full SHA for 9c251c9
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