Merge pull request #1359 from laokz/master

kpatch-build: fix missed parameter of verify_patch_files
This commit is contained in:
Joe Lawrence 2023-09-11 17:46:24 -04:00 committed by GitHub
commit 089e74e8f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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##*.}"