Implement -u/--usage function in lh_clean (Closes: #454553)
This commit is contained in:
parent
d725d86274
commit
94e44ce69a
|
@ -1,3 +1,11 @@
|
||||||
|
live-helper (1.0~a38-1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
[Chris Lamb]
|
||||||
|
|
||||||
|
* Implement -u/--usage function in lh_clean (Closes: #454553)
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel@debian.org> Mon, 14 Jan 2008 23:32:58 +0000
|
||||||
|
|
||||||
live-helper (1.0~a37-2) unstable; urgency=medium
|
live-helper (1.0~a37-2) unstable; urgency=medium
|
||||||
|
|
||||||
* Disabling global arguments in lh_clean (Closes: #451960).
|
* Disabling global arguments in lh_clean (Closes: #451960).
|
||||||
|
|
|
@ -117,8 +117,13 @@ do
|
||||||
rm -f .stage/source*
|
rm -f .stage/source*
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
-u|--usage)
|
||||||
|
Usage
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
"${0}" --usage
|
Usage
|
||||||
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue