Travis also print 7

This commit is contained in:
Dylan 2016-03-31 20:05:36 +11:00
parent 77be954074
commit a9d92d3def
1 changed files with 1 additions and 1 deletions

View File

@ -1728,7 +1728,7 @@ getcols () {
while [ $start -le $end ]; do
case "$start" in
[0-6]) printf "\033[4${start}m%${block_width}s" ;;
7) printf "\033[48;5;${start}m%${block_width}s\n${clear}${padding}" ;;
7) printf "\033[4${start}m%${block_width}s\n${clear}${padding}" ;;
*) printf "\033[48;5;${start}m%${block_width}s" ;;
esac
start=$((start + 1))