mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
byobu: check number of args for "1", and "-v", LP: #494465
This commit is contained in:
parent
22ae859262
commit
8bd6e81161
2 changed files with 2 additions and 2 deletions
2
byobu
2
byobu
|
@ -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
2
debian/changelog
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue