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() ...@@ -56,7 +56,7 @@ __epm_assure_checking()
if [ -e "$CMD" ] ; then if [ -e "$CMD" ] ; then
if [ -n "$verbose" ] ; then if [ -n "$verbose" ] ; then
info "File or directory $CMD is already exists." info "File or directory $CMD is already exists."
epm qf "$CMD" epm qf "$CMD" >&2
fi fi
return 0 return 0
fi fi
...@@ -69,7 +69,7 @@ __epm_assure_checking() ...@@ -69,7 +69,7 @@ __epm_assure_checking()
if [ -n "$verbose" ] ; then if [ -n "$verbose" ] ; then
local compath="$(__check_command_in_path "$1")" local compath="$(__check_command_in_path "$1")"
info "Command $CMD is exists: $compath" info "Command $CMD is exists: $compath"
epm qf "$compath" epm qf "$compath" >&2
fi fi
return 0 return 0
fi fi
......
...@@ -640,7 +640,7 @@ assure_exists() ...@@ -640,7 +640,7 @@ assure_exists()
local ask='' local ask=''
[ -n "$non_interactive" ] || ask=1 [ -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() 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