Skip to content

Commit b6d3c68

Browse files
committed
feat: display 'Skipped' profile status without color in the profile list output.
1 parent a69b873 commit b6d3c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/minikube/cmd/config/profile_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ func profilesToTableData(profiles []*config.Profile) [][]string {
198198
for i, val := range row {
199199
row[i] = style.Green + val + style.Reset
200200
}
201-
case "Stopped", "Paused":
201+
case "Stopped", "Paused", "Skipped":
202202
// No color (default/white)
203203
default:
204204
// Red for everything else (Error, Misconfigured, Warning, etc)

0 commit comments

Comments
 (0)