Fix typos; unset GREP_COLO[U]R.

This commit is contained in:
Philip.Hazel 2016-12-29 15:57:38 +00:00
parent a3cb2c761d
commit 664cc446bb
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export LC_ALL
# Remove any non-default colouring and aliases that the caller may have set.
unset PCRE2GREP_COLOUR PCRE2GREP_COLOR
unset PCRE2GREP_COLOUR PCRE2GREP_COLOR GREP_COLOUR GREP_COLOR
unset cp ls mv rm
# Remember the current (build) directory, set the program to be tested, and
@ -22,12 +22,12 @@ pcre2grep=$builddir/pcre2grep
pcre2test=$builddir/pcre2test
if [ ! -x $pcre2grep ] ; then
echo "** $pcre2grep does not exist or is not execuatble."
echo "** $pcre2grep does not exist or is not executable."
exit 1
fi
if [ ! -x $pcre2test ] ; then
echo "** $pcre2test does not exist or is not execuatble."
echo "** $pcre2test does not exist or is not executable."
exit 1
fi