diff options
Diffstat (limited to 'model/tags.go')
| -rw-r--r-- | model/tags.go | 4 |
1 files changed, 4 insertions, 0 deletions
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{} |
