Skip to content

Commit

Permalink
Merge pull request dynup#1359 from laokz/master
Browse files Browse the repository at this point in the history
kpatch-build: fix missed parameter of verify_patch_files
  • Loading branch information
joe-lawrence committed Sep 11, 2023
2 parents f594a5c + 671fe2c commit 089e74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kpatch-build/kpatch-build
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ verify_patch_files() {
local ret=0

for patch in "${PATCH_LIST[@]}"; do
for path in $(lsdiff "$patch" 2>/dev/null); do
for path in $(lsdiff --strip=1 "$patch" 2>/dev/null); do

dir=$(dirname "$path")
ext="${path##*.}"
Expand Down

0 comments on commit 089e74e

Please sign in to comment.