From 3636c19b38fba5bf6a11469227d68c1f6189c7f7 Mon Sep 17 00:00:00 2001 From: Eyal Posener Date: Tue, 23 May 2017 07:33:38 +0300 Subject: [PATCH] Fix example/self Fixes #34 --- example/self/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/self/main.go b/example/self/main.go index ae4c2e4..9479e64 100644 --- a/example/self/main.go +++ b/example/self/main.go @@ -19,7 +19,7 @@ func main() { // create the complete command cmp := complete.New( "self", - complete.Command{Flags: complete.Flags{"name": complete.PredictAnything}}, + complete.Command{Flags: complete.Flags{"-name": complete.PredictAnything}}, ) // AddFlags adds the completion flags to the program flags, @@ -39,7 +39,7 @@ func main() { // and ran as a completion script or handled a flag that passed // as argument, the Run method will return true, // in that case, our program have nothing to do and should return. - if cmp.Run() { + if cmp.Complete() { return }