Skip to content

v3.7.0-rc.0

  • v3.7.0-rc.0
  • d831a9c
  • Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
  • Choose a tag to compare

  • v3.7.0-rc.0
  • d831a9c
  • Choose a tag to compare

  • Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@openshift-merge-robot openshift-merge-robot tagged this 13 Nov 23:59
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
Assets 2
Loading