byobu: check number of args for "1", and "-v", LP: #494465

This commit is contained in:
Dustin Kirkland 2009-12-14 10:57:43 -06:00
commit 8bd6e81161
2 changed files with 2 additions and 2 deletions

2
byobu
View file

@ -21,7 +21,7 @@ PKG="byobu"
VERSION=2.41
# Add a version argument for debugging purposes
if [ "$1" = "-v" ]; then
if [ "$#" = "1" ] && [ "$1" = "-v" ]; then
echo "$PKG version $VERSION"
screen -v
exit 0

2
debian/changelog vendored
View file

@ -1,6 +1,6 @@
byobu (2.41) unreleased; urgency=low
* UNRELEASED
* byobu: check number of args for "1", and "-v", LP: #494465
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 13 Dec 2009 19:16:43 -0800