diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-06 22:54:06 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-06 22:54:06 +0100 |
commit | 721497790c39e6f63d96c74d53d0c2bc9549df2f (patch) | |
tree | fbd23a476da8ce95194aa8541ab4a3efc0986983 | |
parent | cc8b2cf6d529062399e0d9b4cde17f2475ef19c1 (diff) |
Fixed rpath option detection of exec command.
-rw-r--r-- | cmd-exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-exec.go b/cmd-exec.go index fa7e5ec..aebbeb2 100644 --- a/cmd-exec.go +++ b/cmd-exec.go @@ -54,7 +54,7 @@ func initCmdExec(cmdDef *[]cli.Command) { func exec(ctx *cli.Context) error { prjID := ctx.String("id") - rPath := ctx.String("rPath") + rPath := ctx.String("rpath") sdkid := ctx.String("sdkid") // Check mandatory args |