fix TERM env assignment (#50)

incorrect assignment will result in error:

```has: line 14: =xterm: command not found```
This commit is contained in:
John-Michael Faircloth 2020-08-13 00:01:12 -05:00 committed by GitHub
parent 99595431ff
commit 45c4126659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
has
View File

@ -11,7 +11,7 @@ readonly VERSION="v1.5.0"
## constants - symbols for success failure
if [[ -z $TERM ]]; then
$TERM="xterm"
TERM="xterm"
fi
readonly txtreset="$(tput -T $TERM sgr0)"
readonly txtbold="$(tput -T $TERM bold)"