mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-30 10:11:28 +00:00
grab-merge: Show help when no arguments are provided.
This commit is contained in:
parent
5e28efeca2
commit
834a2947dd
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -10,8 +10,9 @@ ubuntu-dev-tools (0.117) UNRELEASED; urgency=low
|
|||||||
fetching dscs.
|
fetching dscs.
|
||||||
* debian/control: Suggest qemu-user-static | qemu-kvm-extras-static. Ubuntu
|
* debian/control: Suggest qemu-user-static | qemu-kvm-extras-static. Ubuntu
|
||||||
provides a qemu-user-static package, like Debian, since natty.
|
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
|
ubuntu-dev-tools (0.116) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ set -e
|
|||||||
|
|
||||||
MERGE=$1
|
MERGE=$1
|
||||||
|
|
||||||
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
if [ -z "$1" -o "$1" = "-h" -o "$1" = "--help" ]; then
|
||||||
echo "Usage: $0 <package name>"
|
echo "Usage: $0 <package name>"
|
||||||
echo ""
|
echo ""
|
||||||
echo "grab-merge downloads a merge's packaging files and report from"
|
echo "grab-merge downloads a merge's packaging files and report from"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user