mirror of
https://git.centos.org/centos-git-common.git
synced 2025-02-23 16:22:56 +00:00
get_sources: Print the URL we're fetching
Just for better debugging.
This commit is contained in:
parent
552ca48e93
commit
1ad34919a1
1 changed files with 3 additions and 1 deletions
|
@ -212,7 +212,9 @@ while read -r fsha fname ; do
|
|||
for br in "${branches[@]}"
|
||||
do
|
||||
br=$(echo ${br}| sed -e s'|remotes/origin/||')
|
||||
curl -L ${QUIET} -f "${SURL}/${pn}/${br}/${fsha}" -o "${fname}" && break
|
||||
url="${SURL}/${pn}/${br}/${fsha}"
|
||||
echo "Retrieving ${url}"
|
||||
curl -L ${QUIET} -f "${url}" -o "${fname}" && break
|
||||
done
|
||||
else
|
||||
echo "${fname} exists. skipping"
|
||||
|
|
Loading…
Add table
Reference in a new issue