diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-10 23:00:44 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-10 23:00:44 +0800 |
commit | 2586ff0e25596d58307cdbc7ba454f3fa4ea4461 (patch) | |
tree | 6872e09dfed7a6c94e621653fe9acf74da105b11 | |
parent | 883d9000bd05a73f2563f4bd5f51abff2305141f (diff) | |
download | dfly-update-2586ff0e25596d58307cdbc7ba454f3fa4ea4461.tar.bz2 |
Improve the messages/prints a bit
-rwxr-xr-x | dfly-update | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dfly-update b/dfly-update index 769f32f..68efc99 100755 --- a/dfly-update +++ b/dfly-update @@ -525,7 +525,7 @@ cleanup() { fi done < ${tmpfile} rm -f ${tmpfile} - echo " => DONE" + echo "DONE" } # Post-upgrade checking and report: @@ -538,10 +538,10 @@ postupgrade() { echo "+---------------------------------------------------------+" find /etc -name "*.${NEW_SUF}" | sort - echo "+=========================================================+" + echo "+---------------------------------------------------------+" echo "Upgrade the packages by:" echo " # pkg upgrade -f" - echo "" + echo "+=========================================================+" } |