diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-07-20 06:57:50 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-07-20 06:57:50 +0100 |
commit | 37a6d33f46d81109ce5dfa0f79ea52395ac7762d (patch) | |
tree | 918eafd419a2f618e43434b7052a5f943ab44f6e /commits.go | |
parent | 95955f17a38e7f517d4613c004e66d8232073f79 (diff) |
tags are correctly authenticated
Diffstat (limited to 'commits.go')
-rw-r--r-- | commits.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,7 @@ func find_scorsh_message(commit *git.Commit) (string, error) { return msg[idx:], nil } -// return a list of keyring names which verify the signature of this commit +// return a list of keyring names which verify the signature of a given commit func get_valid_keys(commit *git.Commit, keys *map[string]openpgp.KeyRing) []string { var ret []string @@ -100,6 +100,7 @@ func exec_tag(tag *SCORSHtag_cfg) []error { for _, c := range tag.Commands { debug.log("[tag: %s] attempting command: %s\n", tag.Name, c.URL) + ret = append(ret, nil) } return ret |