From 10c61c7dfce2acd5f8dc8a845e4728d9937e064f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 25 Nov 2020 08:50:40 +0200 Subject: [PATCH] kiss: Fix syntax error --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 298e7b0..49978e2 100755 --- a/kiss +++ b/kiss @@ -115,7 +115,7 @@ sh256() { # Example: ' ' # Skip non-files and broken symlinks. - if { [ -h "$1" ] && [ -e "$1" ] } || [ -f "$1" ]; then + if { [ -h "$1" ] && [ -e "$1" ]; } || [ -f "$1" ]; then hash=$( sha256sum "$1" || sha256 -r "$1" ||