From 1789c27b323df5fd48d191780b2c1b67a637638b Mon Sep 17 00:00:00 2001 From: shcai97 <70462468+shcai97@users.noreply.github.com> Date: Wed, 9 Sep 2020 10:21:46 +0800 Subject: [PATCH] use --key and --numeric-sort Co-authored-by: Maxim Belkin <maxim.belkin@gmail.com> --- Library/Homebrew/cmd/update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh index 4d5202874e..a30f74ec3e 100644 --- a/Library/Homebrew/cmd/update.sh +++ b/Library/Homebrew/cmd/update.sh @@ -430,8 +430,8 @@ EOS git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" latest_tag="$(git ls-remote --tags --refs -q origin | cut -d/ -f3 | - sort --field-separator=. --key=1,1nr -k 2,2nr -k 3,3nr| - head -n1)" + sort --numeric-sort --field-separator=. --key=1,1 --key=2,2 --key=3,3 | + tail -n1)" latest_ref="refs/tags/$latest_tag" git fetch --force origin --shallow-since="$latest_ref" fi -- GitLab