diff options
Diffstat (limited to 'cmd-sdks.go')
-rw-r--r-- | cmd-sdks.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-sdks.go b/cmd-sdks.go index e4012e7..35b053e 100644 --- a/cmd-sdks.go +++ b/cmd-sdks.go @@ -142,7 +142,7 @@ func sdksList(ctx *cli.Context) error { } func sdksGet(ctx *cli.Context) error { - id := GetID(ctx) + id := GetID(ctx, "XDS_SDK_ID") if id == "" { return cli.NewExitError("id parameter or option must be set", 1) } @@ -226,7 +226,7 @@ func _sdksListGet(sdks *[]xaapiv1.SDK) error { } func sdksInstall(ctx *cli.Context) error { - id := GetID(ctx) + id := GetID(ctx, "XDS_SDK_ID") file := ctx.String("file") force := ctx.Bool("force") shortOut := ctx.Bool("short") @@ -326,7 +326,7 @@ func sdksInstall(ctx *cli.Context) error { } func sdksUnInstall(ctx *cli.Context) error { - id := GetID(ctx) + id := GetID(ctx, "XDS_SDK_ID") if id == "" { return cli.NewExitError("id parameter or option must be set", 1) } @@ -350,7 +350,7 @@ func sdksUnInstall(ctx *cli.Context) error { } func sdksAbort(ctx *cli.Context) error { - id := GetID(ctx) + id := GetID(ctx, "XDS_SDK_ID") if id == "" { return cli.NewExitError("id parameter or option must be set", 1) } |