diff options
Diffstat (limited to 'internal/executor/helpers.go')
| -rw-r--r-- | internal/executor/helpers.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/executor/helpers.go b/internal/executor/helpers.go index bd5d9d5..76bf8b1 100644 --- a/internal/executor/helpers.go +++ b/internal/executor/helpers.go @@ -171,7 +171,11 @@ func readFileTail(path string, maxBytes int64) string { } func gitSafe(args ...string) []string { - return append([]string{"-c", "safe.directory=*"}, args...) + return append([]string{ + "-c", "safe.directory=*", + "-c", "commit.gpgsign=false", + "-c", "tag.gpgsign=false", + }, args...) } // isCompletionReport returns true when a question-file JSON looks like a |
