From 8b67f2c6338f35102da3b7680338edc577a04386 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 28 Nov 2011 16:12:55 -0500 Subject: [PATCH] Add `-p0` to patch.sh's patch call (to find files in dotted directories). --- bin/patch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/patch.sh b/bin/patch.sh index bb1f583..dfe7ff5 100755 --- a/bin/patch.sh +++ b/bin/patch.sh @@ -18,7 +18,7 @@ for PATCH in local-patch/*.patch; do if [ -f "${PATCH}" ]; then echo "apply ${PATCH}" pushd patched-src/ > /dev/null || exit 1 - patch < "../${PATCH}" || exit 1 + patch -p0 < "../${PATCH}" || exit 1 popd > /dev/null || exit 1 fi done -- 2.26.2