aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmd-sdks.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd-sdks.go b/cmd-sdks.go
index 4bc5a73..066e1dd 100644
--- a/cmd-sdks.go
+++ b/cmd-sdks.go
@@ -156,7 +156,9 @@ func _displaySdks(sdks []xaapiv1.SDK, verbose bool, all bool, filter string) {
first := true
writer := NewTableWriter()
for _, s := range sdks {
- if s.Status != xaapiv1.SdkStatusInstalled && !all {
+ if s.Status != xaapiv1.SdkStatusInstalled &&
+ s.Status != xaapiv1.SdkStatusInstalling &&
+ !all {
continue
}
if filter != "" {