From d20392d4135f6fe0194149c9aee6e9710b49b15f Mon Sep 17 00:00:00 2001 From: Nahum Shalman Date: Sun, 28 Aug 2022 14:54:33 +0000 Subject: [PATCH] cmd/tailscale: add emoji for illumos in status subcommand Signed-off-by: Nahum Shalman --- ipn/ipnstate/ipnstate.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipn/ipnstate/ipnstate.go b/ipn/ipnstate/ipnstate.go index 00d236b40..06fd065b0 100644 --- a/ipn/ipnstate/ipnstate.go +++ b/ipn/ipnstate/ipnstate.go @@ -505,6 +505,8 @@ func osEmoji(os string) string { return "👿" case "openbsd": return "🐡" + case "illumos": + return "☀️" } return "👽" }