diff options
| author | Ophestra <cat@gensokyo.uk> | 2024-12-22 11:02:19 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2024-12-22 11:02:19 +0900 |
| commit | e8594cf670e9c5ef22da833702d0f14fd6d0731e (patch) | |
| tree | a3a7b905348642f5bd43e1af97f825c1f626dbf6 /print.go | |
| parent | 5c73acb56f81d820fdacc4ceff4f00f869318dbc (diff) | |
fortify: print short instance id in non-json short mode
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'print.go')
| -rw-r--r-- | print.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -161,7 +161,7 @@ func printPs(short bool) { for _, instance := range entries { if !flagJSON { - fmt.Println(instance.ID.String()) + fmt.Println(instance.ID.String()[:8]) } else { v = append(v, instance.ID.String()) } |
