diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-01-15 00:05:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:35:31 +0100 |
commit | 6a9d30b2ae34cd1ebe9db8079597e6cb8028737f (patch) | |
tree | fed5f949a337ce122ad0fe1c9706dbecd8d1539e /helpers/lh_clean | |
parent | 94e44ce69a03bf9c12a91046a11f6176c9b2d655 (diff) | |
download | vyos-live-build-6a9d30b2ae34cd1ebe9db8079597e6cb8028737f.tar.gz vyos-live-build-6a9d30b2ae34cd1ebe9db8079597e6cb8028737f.zip |
Implement -v/--version and -h/--help in lh_clean.
Diffstat (limited to 'helpers/lh_clean')
-rwxr-xr-x | helpers/lh_clean | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/helpers/lh_clean b/helpers/lh_clean index 1e4e681a2..f835800ab 100755 --- a/helpers/lh_clean +++ b/helpers/lh_clean @@ -117,10 +117,18 @@ do rm -f .stage/source* ;; + -h|--help) + Help + ;; + -u|--usage) Usage ;; + -v|--version) + Version + ;; + *) Usage exit 1 |