From 7b9fb215b9bcfe7750f0c991d5563e21cb2e0dcf Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Wed, 11 Dec 2024 10:32:28 -0500 Subject: [PATCH] shellcheck: add quotes --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f35ef73..ebaaa46 100755 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ root=$(readlink root) all_files() { - find $root -type f,l + find "$root" -type f,l } for f in $(all_files)