On 6/11/25 7:12 PM, Josh Poimboeuf wrote: > > Hm, revert_patch() already has a call to git_refresh(), so there doesn't > appear to be any point to that extra refresh in revert_patches(). > > Does this fix? > > diff --git a/scripts/livepatch/klp-build b/scripts/livepatch/klp-build > index 7ec07c4079f7..e6dbac89ab03 100755 > --- a/scripts/livepatch/klp-build > +++ b/scripts/livepatch/klp-build > @@ -388,9 +388,6 @@ revert_patches() { > done > > APPLIED_PATCHES=() > - > - # Make sure git actually sees the patches have been reverted. > - [[ -d "$SRC/.git" ]] && (cd "$SRC" && git update-index -q --refresh) > } > > validate_patches() { >
Ah yes, even better. -- Joe