From 4d42d8a3eb459fa124dc7090a6dffe1e5d46c491 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 30 Oct 2022 15:31:37 -0700 Subject: Only apply patches ending in .patch This way you can rename them to skip application. --- scripts/fetch-git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/fetch-git.sh') diff --git a/scripts/fetch-git.sh b/scripts/fetch-git.sh index 460df460..9bff3ad0 100644 --- a/scripts/fetch-git.sh +++ b/scripts/fetch-git.sh @@ -9,5 +9,5 @@ cd "$1" git submodule update --init --checkout src if [ -d patch ] ; then - git -C src am --keep-non-patch --whitespace=nowarn "$PWD"/patch/* + git -C src am --keep-non-patch --whitespace=nowarn "$PWD"/patch/*.patch fi -- cgit v1.2.3