From e910f45ccf65e70ccfd96668e5d03a42e70c4d76 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 16 Jul 2025 13:55:01 +0300 Subject: [PATCH] bugfix... Signed-off-by: Alex A. Naanou --- misc/scripts/img2anim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/misc/scripts/img2anim b/misc/scripts/img2anim index 43a06c3a..9cb36ffa 100755 --- a/misc/scripts/img2anim +++ b/misc/scripts/img2anim @@ -7,10 +7,9 @@ DEBUG=${DEBUG:-$DRY_RUN} function @ () { - [ -z $DEBUG ] \ - || echo "### $@" + echo "### $@" [ -z $DRY_RUN ] \ - && $@ + && "$@" }