style(updater): remove statl from git pull

This commit is contained in:
Marc Cornellà 2022-01-13 12:34:10 +01:00
parent 93cea53618
commit bddecfed58
No known key found for this signature in database
GPG Key ID: 0314585E776A9C1B

View File

@ -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."