We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1ec27 commit 37f7d32Copy full SHA for 37f7d32
helpers/helpers.v2.1.d/utils
@@ -314,7 +314,11 @@ ynh_setup_source() {
314
for patchfile in "$patches_folder/"*.patch; do
315
echo "$patchfile"
316
if ! patch --strip=1 < "$patchfile"; then
317
- ynh_print_warn --message="Warn your packagers /!\\ patch $patchfile failed to apply"
+ if ynh_in_ci_tests; then
318
+ ynh_die --message"Patch $patchfile failed to apply!"
319
+ else
320
+ ynh_print_warn --message="Warn your packagers /!\\ patch $patchfile failed to apply"
321
+ fi
322
fi
323
done
324
popd
0 commit comments