Skip to content

Commit 540a48b

Browse files
committed
fix: added fix for wrong colour usage in VM type
1 parent 3662a39 commit 540a48b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ static void general(
10381038
type = "Sandbox";
10391039
}
10401040

1041-
if (type == VM::brands::NULL_BRAND || type == VM::brands::HYPERV_ROOT) {
1041+
if (type == "Unknown" || type == "Host machine") {
10421042
current_color = red;
10431043
} else {
10441044
current_color = green;

0 commit comments

Comments
 (0)