mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-12-03 11:09:36 -05:00
Fix linter error in the init.sh
This commit is contained in:
parent
5138f7499c
commit
da721d7e38
1 changed files with 1 additions and 1 deletions
2
init.sh
2
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)"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue