mirror of
https://github.com/corda/corda.git
synced 2025-01-19 11:16:54 +00:00
use portable conditional expression in test.sh
[[ expression ]] is bash-specific, so we use [ expression ] instead.
This commit is contained in:
parent
afc3c64e37
commit
e50ee5152a
@ -12,7 +12,7 @@ tests=${@}
|
||||
|
||||
log=log.txt
|
||||
|
||||
if [[ ! -z ${ld_path} ]]; then
|
||||
if [ -n "${ld_path}" ]; then
|
||||
export ${ld_path}
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user