From ecb6e4868a45c82dd2813d1e34ed820c1e8fee7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Tue, 2 Mar 2021 22:02:07 +0000 Subject: [PATCH] Be a bit more verbose when applying patches. --- sysa/helpers.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/sysa/helpers.sh b/sysa/helpers.sh index 30a260b..d1f3526 100755 --- a/sysa/helpers.sh +++ b/sysa/helpers.sh @@ -87,6 +87,7 @@ default_src_unpack() { default_src_prepare() { if test -d "${patch_dir}"; then for p in "${patch_dir}"/*.patch; do + echo "Applying patch: ${p}" patch -Np0 < "${p}" done fi