From ad7380c0eeaa8165067a43734d925a1ccc9187e1 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Fri, 23 Feb 2018 17:57:33 +0100 Subject: [PATCH] Fixed conflict name between exec package and local exec function. Signed-off-by: Sebastien Douheret --- cmd-exec.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd-exec.go b/cmd-exec.go index 83743a3..3f1ee97 100644 --- a/cmd-exec.go +++ b/cmd-exec.go @@ -31,7 +31,7 @@ func initCmdExec(cmdDef *[]cli.Command) { *cmdDef = append(*cmdDef, cli.Command{ Name: "exec", Usage: "execute a command in XDS", - Action: exec, + Action: execCmd, Flags: []cli.Flag{ cli.StringFlag{ Name: "id", @@ -52,7 +52,7 @@ func initCmdExec(cmdDef *[]cli.Command) { }) } -func exec(ctx *cli.Context) error { +func execCmd(ctx *cli.Context) error { prjID := ctx.String("id") rPath := ctx.String("rpath") sdkid := ctx.String("sdkid") -- 2.16.6