grab-merge: Show help when no arguments are provided.

This commit is contained in:
Stefano Rivera 2011-02-13 15:04:40 +02:00
parent 5e28efeca2
commit 834a2947dd
2 changed files with 3 additions and 2 deletions

3
debian/changelog vendored
View File

@ -10,8 +10,9 @@ ubuntu-dev-tools (0.117) UNRELEASED; urgency=low
fetching dscs.
* debian/control: Suggest qemu-user-static | qemu-kvm-extras-static. Ubuntu
provides a qemu-user-static package, like Debian, since natty.
* grab-merge: Show help when no arguments are provided.
-- Stefano Rivera <stefanor@ubuntu.com> Sun, 13 Feb 2011 15:01:30 +0200
-- Stefano Rivera <stefanor@ubuntu.com> Sun, 13 Feb 2011 15:03:36 +0200
ubuntu-dev-tools (0.116) unstable; urgency=low

View File

@ -29,7 +29,7 @@ set -e
MERGE=$1
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
if [ -z "$1" -o "$1" = "-h" -o "$1" = "--help" ]; then
echo "Usage: $0 <package name>"
echo ""
echo "grab-merge downloads a merge's packaging files and report from"