Unset GREP_OPTIONS

Patch by Joaquin Casares; Reviewed by Jon Haddad for CASSANDRA-14487
This commit is contained in:
Joaquin Casares 2018-06-01 18:47:32 -05:00 committed by Jon Haddad
parent 8aab956db9
commit d629a58045
2 changed files with 7 additions and 0 deletions

View File

@ -1,4 +1,5 @@
4.0-alpha4
* Unset GREP_OPTIONS (CASSANDRA-14487)
* Added streaming documentation (CASSANDRA-15477)
* Update to Python driver 3.21 for cqlsh (CASSANDRA-14872)
* Added bulk loading documentation (CASSANDRA-15480)

View File

@ -66,6 +66,12 @@
# NB: Developers should be aware that this script should remain compatible with
# POSIX sh and Solaris sh. This means, in particular, no $(( )) and no $( ).
# Unset any grep options that may include `--color=always` per say.
# Using `unset GREP_OPTIONS` will also work on the non-deprecated use case
# of setting a new grep alias.
# See CASSANDRA-14487 for more details.
unset GREP_OPTIONS
# If an include wasn't specified in the environment, then search for one...
jvmoptions_variant="-server"