From d741def6c3fc54bbc54976239187cd55460ede84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 11 Apr 2015 22:43:38 +0200 Subject: [PATCH] Add -r to the usage text --- fdroidcl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdroidcl.go b/fdroidcl.go index 173690e..eb077d1 100644 --- a/fdroidcl.go +++ b/fdroidcl.go @@ -220,13 +220,13 @@ func init() { p := func(args ...interface{}) { fmt.Fprintln(os.Stderr, args...) } - p("Usage: fdroidcl [-h] []") + p("Usage: fdroidcl [-h] [-r ] []") p() p("Available commands:") p(" update Update the index") p(" list List all available apps") p(" search Search available apps") - p(" show Show detailed info of an app") + p(" show Show detailed info of an app") } }