diff options
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index eb6394c..824dd82 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -1185,9 +1185,9 @@ else fi # parse updates +open_header "Parsing updates" +echo "- parse updated sources ..." if [ "$action" == "update" ] && [ -e "$tmp_path/source_update.log" ]; then - open_header "Parsing updates" - echo "- parse updated sources ..." if [ $git -eq 0 ]; then parse_svn_updates else @@ -1196,6 +1196,8 @@ if [ "$action" == "update" ] && [ -e "$tmp_path/source_update.log" ]; then if [ -z "$updated_packages" ]; then echo "- nothing to do" fi +elif [ "$action" == "install" ]; then + updated_packages=$effective_packages fi pkg_total=`echo "$updated_packages" | wc -w` |