mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
Wrap with quotes
This commit is contained in:
parent
52f15e8aa5
commit
418e6951cf
1 changed files with 2 additions and 2 deletions
|
@ -75,9 +75,9 @@ function check_dependencies() {
|
|||
function check_for_binary() {
|
||||
binary_name="$1"
|
||||
print_sub_point "$binary_name"
|
||||
if [[ -n $(command -v $binary_name) ]]; then
|
||||
if [[ -n $(command -v "$binary_name") ]]; then
|
||||
print_sub_sub_point "status: present"
|
||||
version=$(get_version $binary_name)
|
||||
version=$(get_version "$binary_name")
|
||||
print_sub_sub_point "version info: $version"
|
||||
else
|
||||
print_sub_sub_point "status: MISSING !"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue