fixed redirect on dependency check test
This commit is contained in:
parent
b1f2048717
commit
e972f3eb46
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ detectvim(){
|
|||
|
||||
check-deps(){
|
||||
for pkg in $packages ; do
|
||||
local _pkg=$(dpkg -l $pkg 2>&1 2>/dev/null ; echo $?)
|
||||
local _pkg=$(dpkg -l $pkg 2>&1 >/dev/null ; echo $?)
|
||||
if [[ $_pkg == 1 ]] ; then
|
||||
bins_missing="${bins_missing} $pkg"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue