mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +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
|
ubuntu-dev-tools (0.84) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Michael Bienia ]
|
||||||
* update-maintainer: Remove the check for LP credentials again as this
|
* update-maintainer: Remove the check for LP credentials again as this
|
||||||
script doesn't use the LP API.
|
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
|
ubuntu-dev-tools (0.83) lucid; urgency=low
|
||||||
|
|
||||||
|
@ -69,9 +69,11 @@ else
|
|||||||
}
|
}
|
||||||
|
|
||||||
for NAME in $(sed -n -e "/^ /p" REPORT); do
|
for NAME in $(sed -n -e "/^ /p" REPORT); do
|
||||||
echo "Getting $NAME..."
|
if [ ! -f "$NAME" ]; then
|
||||||
URL="https://merges.ubuntu.com/$HASH/$MERGE/$NAME"
|
echo "Getting $NAME..."
|
||||||
wget -q "$URL" || { echo "Error downloading $URL"; exit 1; }
|
URL="https://merges.ubuntu.com/$HASH/$MERGE/$NAME"
|
||||||
|
wget -q "$URL" || { echo "Error downloading $URL"; exit 1; }
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user