Unverified Commit ad183785 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

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

parent bc7ce982
...@@ -30,7 +30,7 @@ if [ -t 1 ]; then ...@@ -30,7 +30,7 @@ if [ -t 1 ]; then
BOLD=$(printf '\033[1m') BOLD=$(printf '\033[1m')
DIM=$(printf '\033[2m') DIM=$(printf '\033[2m')
UNDER=$(printf '\033[4m') UNDER=$(printf '\033[4m')
RESET=$(printf '\033[m') RESET=$(printf '\033[0m')
fi fi
# Update upstream remote to ohmyzsh org # Update upstream remote to ohmyzsh org
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment