summaryrefslogtreecommitdiff
path: root/tools/upgrade.sh
diff options
context:
space:
mode:
authorMarc Cornellà <hello@mcornella.com>2022-01-13 12:34:10 +0100
committerMarc Cornellà <hello@mcornella.com>2022-01-13 12:34:10 +0100
commitbddecfed58058910f0aeb78d9010f4f8f6d83692 (patch)
tree25d416b4b0db7ce063486ec39cff5f9d7404c8c0 /tools/upgrade.sh
parent93cea53618ebd3f108275c88c948f790492337b4 (diff)
downloadzsh-bddecfed58058910f0aeb78d9010f4f8f6d83692.tar.gz
zsh-bddecfed58058910f0aeb78d9010f4f8f6d83692.tar.bz2
zsh-bddecfed58058910f0aeb78d9010f4f8f6d83692.zip
style(updater): remove statl from `git pull`
Diffstat (limited to 'tools/upgrade.sh')
-rwxr-xr-xtools/upgrade.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upgrade.sh b/tools/upgrade.sh
index 25381de7e..55412062a 100755
--- a/tools/upgrade.sh
+++ b/tools/upgrade.sh
@@ -194,7 +194,7 @@ last_commit=$(git rev-parse "$branch")
# Update Oh My Zsh
printf "${BLUE}%s${RESET}\n" "Updating Oh My Zsh"
-if git pull --rebase --stat $remote $branch; then
+if git pull --rebase $remote $branch; then
# Check if it was really updated or not
if [[ "$(git rev-parse HEAD)" = "$last_commit" ]]; then
message="Oh My Zsh is already at the latest version."