Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
'pkg fetch <packagename>' was failing for remote repos; fix
John Hood committed 4 years ago
commit cd7ca24dc37338c5315e5cd8037f4c84439a0abc
parent c21c49a
1 file changed +1 -1
modified libpkg/pkg_jobs.c
@@ -1781,7 +1781,7 @@ jobs_solve_fetch(struct pkg_jobs *j)
		while (pkghash_next(&hit)) {
			req = hit.value;
			rc = pkg_jobs_universe_process(j->universe, req->item->pkg);
-
			if (rc != EPKG_OK)
+
			if (rc != EPKG_OK && rc != EPKG_END)
				return (rc);
		}
	}