summaryrefslogtreecommitdiffhomepage
path: root/pkgtool.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-02-19 08:33:29 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-02-19 08:33:29 +0000
commit002501d0399f31f06f20239df22266f90af25b32 (patch)
treeb30bdf689dc485cba50045bde593efab766f0629 /pkgtool.sh
parent0fe46c798b52990c4f4431253ae186e6791ce6b7 (diff)
downloadmidipix_build-002501d0399f31f06f20239df22266f90af25b32.tar.bz2
midipix_build-002501d0399f31f06f20239df22266f90af25b32.tar.xz
pkgtool.sh:pkgtoolp_mirror_fetch(): don't fail given skipped package w/ no URLs.
Diffstat (limited to 'pkgtool.sh')
-rwxr-xr-xpkgtool.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgtool.sh b/pkgtool.sh
index e2328244..cf01ba3f 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}";
};