diff options
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/functions b/scripts/functions index 7983f47a..028af3f7 100644 --- a/scripts/functions +++ b/scripts/functions @@ -1050,8 +1050,7 @@ CT_Patch() { if [ -n "${d}" -a -d "${d}" ]; then for p in "${d}"/*.patch; do if [ -f "${p}" ]; then - CT_DoLog DEBUG "Applying patch '${p}'" - CT_DoExecLog ALL patch --no-backup-if-mismatch -g0 -F1 -p1 -f <"${p}" + CT_DoExecLog ALL patch --no-backup-if-mismatch -g0 -F1 -p1 -f -i "${p}" fi done if [ "${CT_PATCH_SINGLE}" = "y" ]; then |