Skip to content
Snippets Groups Projects
Commit b28e1bbc04fb authored by Christophe de Vienne's avatar Christophe de Vienne
Browse files

generate_db_helpers: fix crash on 'db'-less fields

parent 4be74723ba63
No related branches found
No related tags found
No related merge requests found
Pipeline #114625 failed
......@@ -260,6 +260,10 @@
tag, err := tags.Get(name)
if err != nil {
if err.Error() == "tag does not exist" {
return "", nil, os.ErrNotExist
}
return "", nil, err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment