diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-02-19 08:33:29 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-02-19 08:33:29 +0000 |
commit | 002501d0399f31f06f20239df22266f90af25b32 (patch) | |
tree | b30bdf689dc485cba50045bde593efab766f0629 | |
parent | 0fe46c798b52990c4f4431253ae186e6791ce6b7 (diff) | |
download | midipix_build-002501d0399f31f06f20239df22266f90af25b32.tar.bz2 midipix_build-002501d0399f31f06f20239df22266f90af25b32.tar.xz |
pkgtool.sh:pkgtoolp_mirror_fetch(): don't fail given skipped package w/ no URLs.
-rwxr-xr-x | pkgtool.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}"; }; |