Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/lib/common.sh
diff options
context:
space:
mode:
authorLevente Polyak <anthraxx@archlinux.org>2022-09-11 22:08:47 +0200
committerLevente Polyak <anthraxx@archlinux.org>2023-05-19 22:27:11 +0200
commit30616c4fdea37dda26c33d4f94052b99dba2401d (patch)
tree4ddfb16dcf3a59ecd3f2603ef75ca7939c9be8fb /lib/common.sh
parent5eb09a9cc931ca506875276dcd7b794395ba77d0 (diff)
archco: add option to clone all packages of a maintainer
Query Archweb to retrieve a list of all packages of a maintainer by their pkgbase. AFterwards loop through all packages and clone them. Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
Diffstat (limited to 'lib/common.sh')
-rw-r--r--lib/common.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/common.sh b/lib/common.sh
index 5f134ae..fe6450a 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -42,6 +42,11 @@ stat_busy() {
printf "${GREEN}==>${ALL_OFF}${BOLD} ${mesg}...${ALL_OFF}" "$@" >&2
}
+stat_progress() {
+ # shellcheck disable=2059
+ printf "${BOLD}.${ALL_OFF}" >&2
+}
+
stat_done() {
# shellcheck disable=2059
printf "${BOLD}done${ALL_OFF}\n" >&2