kiss: Don't die when sort fails.

This commit is contained in:
Dylan Araps 2020-02-20 01:27:22 +02:00
parent c36f27048c
commit 9d284e66e0
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -431,7 +431,7 @@ pkg_fixdeps() {
# Remove duplicate entries from the new depends file.
# This removes duplicate lines looking *only* at the
# first column.
sort -uk1,1 -o depends depends -
sort -uk1,1 -o depends depends - 2>/dev/null ||:
# Display a 'diff' of the new dependencies against
# the old ones. '-N' treats non-existent files as blank.