From 0ed6769fcf59fca204adc787d34907e3931030de Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 28 Dec 2023 02:45:10 +0100 Subject: [PATCH] helpers/utils: replace the damn ynh_die with a warning when patch fails to apply ... --- helpers/utils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/utils b/helpers/utils index e16ddc70b..9c92e65b9 100644 --- a/helpers/utils +++ b/helpers/utils @@ -354,7 +354,7 @@ ynh_setup_source() { pushd "$dest_dir" for p in $patches_folder/${source_id}-*.patch; do echo $p - patch --strip=1 <$p || ynh_die --message="Unable to apply patches" + patch --strip=1 <$p || ynh_print_warn --message="Packagers /!\\ patch $p failed to apply" done popd fi