From 1c6d3c6e22a77761f6434257814a20932d123fa9 Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Fri, 17 Apr 2020 02:23:09 -0400 Subject: [PATCH] Fix help command description --- command/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/command.go b/command/command.go index afddd32..6fa9212 100644 --- a/command/command.go +++ b/command/command.go @@ -22,7 +22,7 @@ var nocontext = context.Background() // Command parses the command line arguments and then executes a // subcommand program. func Command() { - app := kingpin.New("drone", "drone exec runner") + app := kingpin.New("drone", "drone docker runner") registerCompile(app) registerExec(app) daemon.Register(app)