aboutsummaryrefslogtreecommitdiffstats
path: root/git-sign-for-cgit (unfollow)
Commit message (Collapse)AuthorLines
2021-07-04Do not exit if package.format is unsetWolfgang Müller-1/+1
Both git-package(1) and git-sign-for-cgit(1) set 'errexit', making the shell exit immediately upon an error. Since git-config(1) exits with an error if a configuration entry could not be found, a missing entry for package.format would lead to both scripts bailing out. We want to fall back to the "tar.gz" format if package.format is unset, so make sure to ignore this particular error.
2021-05-17git-sign-for-cgit: Use single quotes for strings that need no expansionWolfgang Müller-1/+1
2021-05-17git-sign-for-cgit: Remove erroneous newline characterWolfgang Müller-1/+1
This came from when usage did its own printing. errx() already adds a newline here (and this particular one was handled literally anyway).