fixed funcion return syntax
This commit is contained in:
parent
e413bee104
commit
632f49c930
1 changed files with 2 additions and 2 deletions
|
|
@ -120,9 +120,9 @@ check-deps(){
|
|||
local _bins_missing=$(echo $bins_missing | wc -w)
|
||||
if [[ $_bins_missing == 0 ]] ; then
|
||||
bins_missing=("false")
|
||||
return false
|
||||
return 1
|
||||
else
|
||||
return true
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue