Hotfix in mergedb.sh for "grep" vs "set -e"

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2017-12-21 20:57:31 +01:00
parent 63d4d3ba9f
commit c04f33ff3a
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ case "$1" in
esac
touch "$db"
sort -u "$tmp1" "$db" | grep -v '<.*>' > "$tmp2"
sort -u "$tmp1" "$db" | grep -v '<.*>' > "$tmp2" || true
mv "$tmp2" "$db"
rm -f "$tmp1"