commit 69b1737
hovercats
·
2025-06-04 06:26:54 +0000 UTC
parent ab7f16a
check if a prebuilt tarball exist before attempting to build when updating
1 files changed,
+3,
-1
M
rcpm
M
rcpm
+3,
-1
1@@ -141,7 +141,9 @@ fn update_pkg {
2 echo $pkg is up to date
3 }
4 if not {
5- build_pkg $pkg
6+ get_ver
7+ if (check_prebuilt) build_pkg $pkg
8+ if not install_pkg $pkg
9 }
10 }
11 }