Comment 6 for bug 494465

Revision history for this message
Dustin Kirkland  (kirkland) wrote : Re: [Bug 494465] Re: F9 configuration menu does not work

Okay, thanks.

I just committed a fix that should solve that "$1" = "-v" issue.

I'm not sure if that will fix your problem, though.

Can you change one line in /usr/bin/byobu and tell me if that solves it for you?

--- /usr/bin/byobu 2009-12-14 03:16:43 +0000
+++ /usr/bin/byobu 2009-12-14 16:57:01 +0000
@@ -21,7 +21,7 @@
 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