commit | 2600f7e327fde3d698062dec886bbd427c0e7a31 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed Mar 18 09:42:56 2020 -0600 |
committer | Tom Rini <trini@konsulko.com> | Fri Apr 10 21:32:53 2020 -0400 |
tree | 3b771a89ba44b3e6ca7020cd60ee64e04270c8a6 | |
parent | 28d83e77c7da237874530aef91ecb9ae2c40f07c [diff] |
travis/gitlab/azure: Use bash to avoid a_test_which_does_not_exist Bash allows for variables to expand only if non-empty: $ var=test $ echo ${var:+"$var"} test $ echo ${var:+"-k $var"} -k test $ var= $ echo ${var:+"-k $var"} Use this feature to avoid the workaround. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>