From 3a31b01ba56fefd9975d51c3beeb7ebd12199894 Mon Sep 17 00:00:00 2001 From: David Rabkin Date: Thu, 9 Nov 2023 17:35:10 +0200 Subject: [PATCH] ival: simplify the log --- app/ival | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ival b/app/ival index b2b1f41..7b66756 100755 --- a/app/ival +++ b/app/ival @@ -4,7 +4,7 @@ # Validates image files. # shellcheck disable=SC1091,SC2034 # File not following, variable unused. readonly \ - BASE_APP_VERSION=0.9.20230805 \ + BASE_APP_VERSION=0.9.20231109 \ BASE_MIN_VERSION=0.9.20230606 . base.sh validate_cmd convert @@ -14,6 +14,6 @@ isreadable "$DIR" || die Directory "$DIR" is not readable. find "$DIR" -type f \ \( -name \*.jpg -o -name \*.nef -o -name \*.raf -o -name \*.heic \) | while read -r img; do - convert "$img" null >/dev/null 2>&1 || loge FAIL: "$img". - log OKAY: "$img". + convert "$img" null >/dev/null 2>&1 || loge no: "$img". + log ok: "$img". done