mirror of https://github.com/apache/cassandra
Unset GREP_OPTIONS
Patch by Joaquin Casares; Reviewed by Jon Haddad for CASSANDRA-14487
This commit is contained in:
parent
8aab956db9
commit
d629a58045
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue