summaryrefslogtreecommitdiffstats
path: root/bin/show_colors
diff options
context:
space:
mode:
authorJesse Luehrs <doy@stripe.com>2018-08-10 14:19:40 -0700
committerJesse Luehrs <doy@tozt.net>2018-08-10 14:38:45 -0700
commit99e064e3a5371601f45d4c61cee72a497c13e160 (patch)
tree815b527eb99e0b538ecd2f4f0c49af3ba11a75cc /bin/show_colors
parent1f7f59b54e2b0129e9e46dab4a0c2edb2433c7ff (diff)
downloadconf-99e064e3a5371601f45d4c61cee72a497c13e160.tar.gz
conf-99e064e3a5371601f45d4c61cee72a497c13e160.zip
fix output of show_colors
Diffstat (limited to 'bin/show_colors')
-rwxr-xr-xbin/show_colors2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/show_colors b/bin/show_colors
index ba679df..35c5374 100755
--- a/bin/show_colors
+++ b/bin/show_colors
@@ -11,7 +11,7 @@ for attr in 0 1 2 3 4 5 6 7 ; do
for back in 40 41 42 43 44 45 46 47; do
printf '\033[%s;%s;%sm %02s;%02s ' $attr $fore $back $fore $back
done
- printf '\n'
+ printf '\033[0m\n'
done
printf '\033[0m'
done