summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-01-23 00:43:01 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2021-01-23 00:54:54 -0500
commit96ccbfed6eef15b1022ec1407d625f26504bb35e (patch)
tree2b435ad0002bca7807aa1d65db57909c5e2e1c4a
parent3d355579f2003956c3eafbdf194f493068b4b1b9 (diff)
revertme - debugging
-rw-r--r--scripts/libmakepkg/source.sh.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/libmakepkg/source.sh.in b/scripts/libmakepkg/source.sh.in
index a0c6b662..ecbe7ea5 100644
--- a/scripts/libmakepkg/source.sh.in
+++ b/scripts/libmakepkg/source.sh.in
@@ -37,6 +37,8 @@ download_sources() {
local netfile all_sources
local get_source_fn=get_all_sources_for_arch get_vcs=1
+DBG "source.sh::download_sources() IN"
+
msg "$(gettext "Retrieving sources...")"
while true; do
@@ -56,6 +58,9 @@ download_sources() {
"$get_source_fn" 'all_sources'
for netfile in "${all_sources[@]}"; do
+
+DBG "source.sh::download_sources() netfile=${netfile}"
+
pushd "$SRCDEST" &>/dev/null
local proto=$(get_protocol "$netfile")
@@ -67,6 +72,8 @@ download_sources() {
popd &>/dev/null
done
+
+DBG "source.sh::download_sources() OUT"
}
extract_sources() {