Use exit code as integer

pull/5370/head
ioedeveloper 4 years ago
parent 56e2c77bd4
commit 24125c311c
  1. 4
      apps/remix-ide-e2e/script.sh

@ -16,8 +16,8 @@ fi
eval $TEST_SCRIPT;
echo "$TEST_EXITCODE"
if [ "$TEST_EXITCODE" -eq 1 ]
echo $TEST_EXITCODE
if [ $TEST_EXITCODE -eq 1 ]
then
exit 1
fi
Loading…
Cancel
Save