Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Apr 15, 2016
2 parents 583270b + 6b1655e commit 08256c1
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions git-standup
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ if which tput >/dev/null 2>&1; then
ncolors=$(tput colors)
fi
if [[ -t 1 ]] && [[ -n "$ncolors" ]] && [[ "$ncolors" -ge 8 ]] ; then
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
YELLOW="$(tput setaf 3)"
BLUE="$(tput setaf 4)"
BOLD="$(tput bold)"
NORMAL="$(tput sgr0)"
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
YELLOW=$(tput setaf 3)
BLUE=$(tput setaf 4)
BOLD=$(tput bold)
UNDERLINE=$(tput smul)
NORMAL=$(tput sgr0)
Expand All @@ -26,8 +24,6 @@ else
YELLOW=""
BLUE=""
BOLD=""
NORMAL=""
BOLD=""
UNDERLINE=""
NORMAL=""
fi
Expand Down

0 comments on commit 08256c1

Please sign in to comment.