Fix linter error in the init.sh

This commit is contained in:
Kevin MacMartin 2023-08-22 21:43:48 -04:00
parent 5138f7499c
commit da721d7e38
1 changed files with 1 additions and 1 deletions

View File

@ -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)"
}