Implement -v/--version and -h/--help in lh_clean.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
parent
c833147b8d
commit
c837a9ebb4
|
@ -2,7 +2,8 @@ live-helper (1.0~a38-1) UNRELEASED; urgency=medium
|
|||
|
||||
[Chris Lamb]
|
||||
|
||||
* Implement -u/--usage function in lh_clean (Closes: #454553)
|
||||
* Implement -u/--usage, -v/--version and -h/--help options in lh_clean
|
||||
(Closes: #454553)
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 14 Jan 2008 23:32:58 +0000
|
||||
|
||||
|
|
|
@ -117,10 +117,18 @@ do
|
|||
rm -f .stage/source*
|
||||
;;
|
||||
|
||||
-h|--help)
|
||||
Help
|
||||
;;
|
||||
|
||||
-u|--usage)
|
||||
Usage
|
||||
;;
|
||||
|
||||
-v|--version)
|
||||
Version
|
||||
;;
|
||||
|
||||
*)
|
||||
Usage
|
||||
exit 1
|
||||
|
|
Loading…
Reference in New Issue