diff options
author | Wolfgang Müller | 2021-07-04 13:13:27 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-07-04 13:13:27 +0200 |
commit | d330c4c0a01d1a61d0983ab2a2eb30befb7d9858 (patch) | |
tree | ff7643f992f0bc3f1b9f720581adfebd71713276 /git-sign-for-cgit | |
parent | 8643238ec04da8d0bda46cb06ecd29dc88f9d243 (diff) | |
download | git-helpers-d330c4c0a01d1a61d0983ab2a2eb30befb7d9858.tar.gz |
Do not exit if package.format is unset
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.
Diffstat (limited to '')
-rwxr-xr-x | git-sign-for-cgit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-sign-for-cgit b/git-sign-for-cgit index 6fc7311..2acdd5f 100755 --- a/git-sign-for-cgit +++ b/git-sign-for-cgit @@ -13,7 +13,7 @@ usage() { seckey=${SIGNIFY_SECKEY:-$HOME/.signify/release.sec} -format="$(git config --get package.format)" +format="$(git config --get package.format)" || true : "${format:=tar.gz}" while getopts f: opt; do |