added a double lambda test case
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-03-09 14:16:51 +09:00
parent 49ad657544
commit 081c6d1874
3 changed files with 25 additions and 8 deletions

View File

@ -1,5 +1,6 @@
#!/bin/sh
## use a subshell to execute the actual program in case the
## program crashes or exits without an error message.
echo RUN "[$@]"
($@ 2>&1 || echo "ERROR: exited with $?") | grep -E '^ERROR:' && exit 1
exit 0