v3.7.0-rc.0
Automatic merge from submit-queue. Bug in test hack/entrypoint.sh `If` with `test '['` does not support the `and` operator '&&' this way. It should be either: if [ ... ] && [ ... ] or to use improved '[[' if [[ ... && ... ]] or as with '[' and '-a' if [ ... -a ... ] More on this: http://mywiki.wooledge.org/BashFAQ/031