mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 15:41:09 +00:00
grab-merge: Only download files listed multiple times in REPORT once
This commit is contained in:
parent
3eb8f13f35
commit
4b556e6d3b
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,9 +1,13 @@
|
||||
ubuntu-dev-tools (0.84) UNRELEASED; urgency=low
|
||||
|
||||
[ Michael Bienia ]
|
||||
* update-maintainer: Remove the check for LP credentials again as this
|
||||
script doesn't use the LP API.
|
||||
|
||||
-- Michael Bienia <geser@ubuntu.com> Sat, 21 Nov 2009 20:22:54 +0100
|
||||
[ Manny Vindiola ]
|
||||
* grab-merge: Only download files listed multiple times in REPORT once
|
||||
|
||||
-- Manny Vindiola <mannyv@gmail.com> Tue, 24 Nov 2009 17:03:08 -0500
|
||||
|
||||
ubuntu-dev-tools (0.83) lucid; urgency=low
|
||||
|
||||
|
@ -69,9 +69,11 @@ else
|
||||
}
|
||||
|
||||
for NAME in $(sed -n -e "/^ /p" REPORT); do
|
||||
echo "Getting $NAME..."
|
||||
URL="https://merges.ubuntu.com/$HASH/$MERGE/$NAME"
|
||||
wget -q "$URL" || { echo "Error downloading $URL"; exit 1; }
|
||||
if [ ! -f "$NAME" ]; then
|
||||
echo "Getting $NAME..."
|
||||
URL="https://merges.ubuntu.com/$HASH/$MERGE/$NAME"
|
||||
wget -q "$URL" || { echo "Error downloading $URL"; exit 1; }
|
||||
fi
|
||||
done
|
||||
fi
|
||||
echo
|
||||
|
Loading…
x
Reference in New Issue
Block a user