diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-11 00:34:07 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-11 00:34:07 +0800 |
commit | 0ab517e362896b0f79f6bce4caef1a4515685aa5 (patch) | |
tree | e0b3091d5c93cd2b798fd606409a375e54d98868 /dfly-update | |
parent | dab6814f151398422d973f362b42f106c232019d (diff) | |
download | dfly-update-0ab517e362896b0f79f6bce4caef1a4515685aa5.tar.bz2 |
postupgrade(): sort found files
Diffstat (limited to 'dfly-update')
-rwxr-xr-x | dfly-update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dfly-update b/dfly-update index 6f59199..d0e5369 100755 --- a/dfly-update +++ b/dfly-update @@ -547,7 +547,7 @@ postupgrade() { echo "+=========================================================+" echo "The following config files need manual merge:" echo "+---------------------------------------------------------+" - find /etc -name "*.${NEW_SUF}" | sort + find -s /etc -name "*.${NEW_SUF}" | sort echo "+---------------------------------------------------------+" echo "Upgrade the packages by:" |