Commit a08b6608 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play --update all: pre-filter apps using bulk version check

parent 3e881652
......@@ -678,8 +678,13 @@ case "$1" in
local list
if [ "$1" = "all" ] ; then
shift
info "Retrieving list of installed apps ..."
list="$(__list_installed_app)"
info "Checking for available updates ..."
list="$(short=1 __list_available_updates)"
if [ -z "$list" ] ; then
info "All installed applications are up to date."
exit
fi
info "Apps to update: $(echo $list | wc -w)"
else
list="$*"
fi
......
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