mirror of
https://github.com/dynup/kpatch
synced 2025-04-11 03:31:20 +00:00
Merge pull request #1359 from laokz/master
kpatch-build: fix missed parameter of verify_patch_files
This commit is contained in:
commit
089e74e8f6
@ -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##*.}"
|
||||
|
Loading…
Reference in New Issue
Block a user