From 1f246bd57bfa91a18d8d4e51a5c47b62aa8966eb Mon Sep 17 00:00:00 2001 From: Hippolyte Chauvin Date: Fri, 1 Dec 2023 15:08:10 +0100 Subject: [PATCH] qemush : suppression d'une erreur ShellCheck Une variable contenait 'cat' sans expansion --- bin/qemush | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/qemush b/bin/qemush index 6e5a690..bbc04c7 100755 --- a/bin/qemush +++ b/bin/qemush @@ -19,7 +19,7 @@ images=images if [ -t 1 ]; then cat=src-hilite-lesspipe.sh else - cat=cat + cat='cat' fi PATH="./${bin}:${PATH}"