Correct whitespace inside conditions

This commit is contained in:
Kamil Śliwak 2020-12-11 20:31:26 +01:00
parent 6d44055556
commit 566d49a1d1

View File

@ -444,7 +444,7 @@ SOLTMPDIR=$(mktemp -d)
set -e
# This should fail
if [[ !("$output" =~ "No input files given") || ($result == 0) ]]
if [[ ! ("$output" =~ "No input files given") || ($result == 0) ]]
then
printError "Incorrect response to empty input arg list: $output"
exit 1