cabal-tweak-flag: add missing 'not' to an error message (#1184508)

thanks to Ian Collier for the report
This commit is contained in:
Jens Petersen 2015-01-22 10:24:41 +09:00
parent 4b3c2433d5
commit 1107962ad8
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ if [ $(echo $CABALFILE | wc -w) -ne 1 ]; then
fi
if ! grep -q -i "^flag *$FLAG" $CABALFILE; then
echo "$CABALFILE does have flag $FLAG"
echo "$CABALFILE does not have flag $FLAG"
exit 1
fi