Commit 7136557f authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm assure: don't print to stdout ever in --verbos

parent 5437e2a2
......@@ -56,7 +56,7 @@ __epm_assure_checking()
if [ -e "$CMD" ] ; then
if [ -n "$verbose" ] ; then
info "File or directory $CMD is already exists."
epm qf "$CMD"
epm qf "$CMD" >&2
fi
return 0
fi
......@@ -69,7 +69,7 @@ __epm_assure_checking()
if [ -n "$verbose" ] ; then
local compath="$(__check_command_in_path "$1")"
info "Command $CMD is exists: $compath"
epm qf "$compath"
epm qf "$compath" >&2
fi
return 0
fi
......
......@@ -640,7 +640,7 @@ assure_exists()
local ask=''
[ -n "$non_interactive" ] || ask=1
( direct='' interactive=$ask epm_assure "$1" $package $3 ) || fatal
( verbose='' direct='' interactive=$ask epm_assure "$1" $package $3 ) || fatal
}
assure_exists_erc()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment