From 002501d0399f31f06f20239df22266f90af25b32 Mon Sep 17 00:00:00 2001 From: Lucio Andrés Illanes Albornoz Date: Feb 19 2021 08:33:29 +0000 Subject: pkgtool.sh:pkgtoolp_mirror_fetch(): don't fail given skipped package w/ no URLs. --- diff --git a/pkgtool.sh b/pkgtool.sh index e232824..cf01ba3 100755 --- a/pkgtool.sh +++ b/pkgtool.sh @@ -111,7 +111,7 @@ pkgtoolp_mirror_fetch() { fi; fi; else - _rc=1; rtl_log_msg warning "Package \`%s' has neither archive nor Git URL(s), skipping." "${_pkg_name}"; + _rc=0; rtl_log_msg warning "Package \`%s' has neither archive nor Git URL(s), skipping." "${_pkg_name}"; fi; fi; return "${_rc}"; };