From da721d7e385f5ca05c37956eecb8901232162393 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 22 Aug 2023 21:43:48 -0400 Subject: [PATCH] Fix linter error in the init.sh --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index 81234d9..4135461 100755 --- a/init.sh +++ b/init.sh @@ -47,7 +47,7 @@ done error "${c_w}missing dependencies ($( for (( x=0; x < ${#missing_deps[@]}; x++ )); do printf '%s' "$c_m${missing_deps[$x]}$c_c" - (( (( x + 1 )) < ${#missing_deps[@]} )) && printf '%s' ', ' + (( (x + 1) < ${#missing_deps[@]} )) && printf '%s' ', ' done )$c_w)" }