From 48e5ba29bd48728d5bf221b8ad57b9f70c049224 Mon Sep 17 00:00:00 2001 From: ewy Date: Sat, 6 Jun 2026 17:49:55 +0200 Subject: update tests --- model/tags.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'model/tags.go') diff --git a/model/tags.go b/model/tags.go index 9c5035d..8782009 100644 --- a/model/tags.go +++ b/model/tags.go @@ -40,6 +40,10 @@ var ( Override = New("override", "the .override tag will make this target get selected over other targets with the same name. Use this when your machine needs a custom workflow. It is discouraged to check these into version control, as everyone will receive your override.") ) +func (t *Tag) String() string { + return t.Name +} + var TagList []*Tag var TagMap = map[string]*Tag{} -- cgit v1.3.1