We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c394d0d commit 5d98325Copy full SHA for 5d98325
example/run.sh
@@ -16,9 +16,7 @@ do
16
exit_code=$?
17
echo ============================$python_args=============================
18
# if not the time out exit code or normal exit code
19
- if [ $exit_code -ne 124 ]; then
20
- echo "The script timed out" >&2
21
- elif [ $exit_code -ne 0 ]; then
+ if [ $exit_code -ne 124 ] && [ $exit_code -ne 0 ]; then
22
echo "The script failed with exit code $exit_code" >&2
23
code=1
24
fi
0 commit comments