Hello!
cg-admin-cat ignores the argument for the "-r" option because it uses
optparse incorrectly. For OPTARG to be set, "-r=" should be used
instead of "-r".
Signed-off-by: Pavel Roskin <[EMAIL PROTECTED]>
diff --git a/cg-admin-cat b/cg-admin-cat
--- a/cg-admin-cat
+++ b/cg-admin-cat
@@ -27,7 +27,7 @@ USAGE="cg-admin-cat [-r TREE_ID] FILE...
rev=HEAD
while optparse; do
- if optparse -r; then
+ if optparse -r=; then
rev="$OPTARG"
else
optfail
--
Regards,
Pavel Roskin
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html