From e90686acb34da65ec5181ae610b414bfd085bdfb Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Wed, 19 Feb 2020 23:27:21 +0000 Subject: kiss: Don't die when sort fails. FossilOrigin-Name: c5d370b34caa47bdc0c5637ddbf9516543ae227251314f51adacead33c611ba1 --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kiss') diff --git a/kiss b/kiss index 9043b6c..73fa830 100755 --- a/kiss +++ b/kiss @@ -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. -- cgit v1.2.3