From 64a255cdfe9818c651513e6a1316ad3b55e0261e Mon Sep 17 00:00:00 2001 From: wangjiexun Date: Tue, 20 Jun 2023 13:08:49 +0800 Subject: [PATCH] tools: fix up patch script --- tools/kernel/patch.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/kernel/patch.sh b/tools/kernel/patch.sh index 62a4b25..41d21e8 100755 --- a/tools/kernel/patch.sh +++ b/tools/kernel/patch.sh @@ -49,5 +49,7 @@ do fi done - [ -x "$d/patch.sh" ] && $d/patch.sh $KERNEL_SRC + if [ -x "$d/patch.sh" ]; then + $d/patch.sh $KERNEL_SRC + fi done -- Gitee