mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #14321 from ethereum/fix-bash-syntax-error-on-expectation-update-in-cli-tests
Fix Bash syntax error that shows up in CLI test output when updating expectations
This commit is contained in:
commit
4e113820c9
@ -115,7 +115,7 @@ function update_expectation {
|
||||
local newExpectation="${1}"
|
||||
local expectationFile="${2}"
|
||||
|
||||
if [[ $newExpectation == "" || $newExpectation -eq 0 && $expectationFile == */exit ]]
|
||||
if [[ $newExpectation == '' || $newExpectation == '0' && $expectationFile == */exit ]]
|
||||
then
|
||||
if [[ -f $expectationFile ]]
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user