mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-12-04 03:25:03 -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 ($(
|
error "${c_w}missing dependencies ($(
|
||||||
for (( x=0; x < ${#missing_deps[@]}; x++ )); do
|
for (( x=0; x < ${#missing_deps[@]}; x++ )); do
|
||||||
printf '%s' "$c_m${missing_deps[$x]}$c_c"
|
printf '%s' "$c_m${missing_deps[$x]}$c_c"
|
||||||
(( (( x + 1 )) < ${#missing_deps[@]} )) && printf '%s' ', '
|
(( (x + 1) < ${#missing_deps[@]} )) && printf '%s' ', '
|
||||||
done
|
done
|
||||||
)$c_w)"
|
)$c_w)"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue