mirror of
https://gitea.elkins.co/Networking/ccl.git
synced 2025-03-09 12:41:40 -05:00
Use unicode ✔ for ls
Running and Created columns
This commit is contained in:
parent
f1bc92cd46
commit
a1f4e8e8d9
@ -52,12 +52,12 @@ ccl ls squid`,
|
||||
for _, c := range conts {
|
||||
data := []interface{}{c.Category, c.Name, c.Image}
|
||||
if c.IsCreated() {
|
||||
data = append(data, "YES")
|
||||
data = append(data, " ✔")
|
||||
} else {
|
||||
data = append(data, "")
|
||||
}
|
||||
if c.IsRunning() {
|
||||
data = append(data, "YES")
|
||||
data = append(data, " ✔")
|
||||
} else {
|
||||
data = append(data, "")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user