From aa16d4bc7c2dd5d9710662cad2cf3b90bb852706 Mon Sep 17 00:00:00 2001 From: Daniel Theophanes Date: Sat, 15 Jun 2013 09:54:26 -0700 Subject: [PATCH] stdservice: Fix help message. --- stdservice/stdservice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdservice/stdservice.go b/stdservice/stdservice.go index 16d83ed..db94d13 100644 --- a/stdservice/stdservice.go +++ b/stdservice/stdservice.go @@ -122,7 +122,7 @@ func run(c *Config) { } fmt.Printf("Service \"%s\" stopped.\n", c.DisplayName) default: - fmt.Printf("Options for \"%s\": (install | remove | run | start | stop)\n") + fmt.Printf("Options for \"%s\": (install | remove | run | start | stop)\n", os.Args[0]) } return }