aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-03 11:12:14 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-03 11:12:14 +0100
commitbbd16c4e5951055ed73f7282dfd22cc4b3ab5700 (patch)
tree7da4e5d46fba746974cea82133849a51b981d473
parent397a6038d7d88d21c8577f1c7267849ba5814080 (diff)
Minor fixes in sdks command output.
-rw-r--r--cmd-sdks.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmd-sdks.go b/cmd-sdks.go
index 5f07e99..7d257aa 100644
--- a/cmd-sdks.go
+++ b/cmd-sdks.go
@@ -176,7 +176,11 @@ func _displaySdks(sdks []xaapiv1.SDK, verbose bool, all bool, filter string) {
} else {
if first {
+ if all {
+ fmt.Fprintf(writer, "List of available SDKs: \n")
+ } else {
fmt.Fprintf(writer, "List of installed SDKs: \n")
+ }
fmt.Fprintf(writer, " ID\tNAME\tSTATUS\tVERSION\tARCH\n")
}
fmt.Fprintf(writer, " %s\t%s\t%s\t%s\t%s\n", s.ID[:8], s.Name, s.Status, s.Version, s.Arch)
@@ -247,7 +251,8 @@ func sdksInstall(ctx *cli.Context) error {
return cli.NewExitError(err, 1)
}
Log.Debugf("Result of %s: %v", url, newSdk)
- fmt.Printf("Installating of '%s' SDK (id %v) successfully started.\n", newSdk.Name, newSdk.ID)
+ fmt.Printf("Installation of '%s' SDK (id %v) successfully started.\n", newSdk.Name, newSdk.ID)
+
// Wait exit
select {