7ff6e8a1dc
The Bash shell scripts ignored errors in all but the last line. This commit adds `set -eo pipefail` to fix the issue: `set -e` causes the script to exit as soon as any command exits with a non-zero exit code. When pipes are used, this flag only applies to the last command in a pipe. The `set -o pipefail` option ensures that the script is also exited with a non-zero exit code when any command in the pipe fails. |
||
---|---|---|
.. | ||
fixtures | ||
integration | ||
.eslintrc | ||
mocha-babel.js | ||
run-browsers-smoketests.sh | ||
run-module-bundlers-smoketests.sh | ||
setup.js | ||
test-async-functions.js | ||
test-browser-global.js | ||
test-proxied-properties.js | ||
test-runtime-onMessage.js |