# HG changeset patch # User Goffi # Date 1413740687 -7200 # Node ID b10f0188594964dcaac0d18d10f850fe87e7e334 # Parent 2c861d6aa446784b72c9bf46e932dcfdcd741022 docker: fixed libervia_cont update + added some newlines diff -r 2c861d6aa446 -r b10f01885949 docker/libervia_cont.sh --- a/docker/libervia_cont.sh Sun Oct 19 19:40:45 2014 +0200 +++ b/docker/libervia_cont.sh Sun Oct 19 19:44:47 2014 +0200 @@ -222,7 +222,7 @@ printf "\n" ;; UPDATE) - printf "updating containers" + printf "updating containers...\n" errors=0 for CONT in $CONTAINERS data; do printf "\nupdating $CONT" @@ -232,10 +232,10 @@ errors=1 fi done - if [ errors -eq 0 ]; then - printf "\nContainers are up-to-date" + if [ $errors -eq 0 ]; then + printf "\n\nContainers are up-to-date\n" else - printf "\nSome errors happened while updating containers" + printf "\n\nSome errors happened while updating containers\n" exit 1 fi ;;