fix(updater): fix reset ANSI escape code for resetting underline format

This commit is contained in:
Marc Cornellà 2021-08-17 16:35:42 +02:00
parent bc7ce982dd
commit ad1837859b
No known key found for this signature in database
GPG Key ID: 0314585E776A9C1B

View File

@ -30,7 +30,7 @@ if [ -t 1 ]; then
BOLD=$(printf '\033[1m')
DIM=$(printf '\033[2m')
UNDER=$(printf '\033[4m')
RESET=$(printf '\033[m')
RESET=$(printf '\033[0m')
fi
# Update upstream remote to ohmyzsh org