summaryrefslogtreecommitdiffstats
path: root/lib/changelog.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-13 03:54:58 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-13 03:54:58 (EDT)
commit8173bcbcc3a05333979b0da0a765b4dedde7448e (patch)
tree09eda12b33c4b81b202a21f1a869cd2f47b67314 /lib/changelog.sh
parente59f223d3376b94a31131d1c5b72ea37fda47a00 (diff)
Don't let libopkbuild errors cause exit with -e
Diffstat (limited to 'lib/changelog.sh')
-rw-r--r--lib/changelog.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/changelog.sh b/lib/changelog.sh
index 3216f94..83f4ca1 100644
--- a/lib/changelog.sh
+++ b/lib/changelog.sh
@@ -151,10 +151,8 @@ ob_parse_changelog()
elif [ -n "${source}" ]; then
"${entry_cb}" "${source}" "${version}" \
"${distribution}" "${changes}" \
- "${maintainer}" "${date}"
- if [ ${?} -ne 0 ]; then
+ "${maintainer}" "${date}" || \
return 0
- fi
fi
expect='next_or_eof'
blank_lines=''