apenwarr-redo/t/000-set-minus-e/all.do
Tommi Virtanen c2c013970e Avoid bashism >&file
The >& form is only for file descriptors, passing a file name there is
a bash extension.

    $ /bin/dash -c 'echo foo >&/dev/null'
    /bin/dash: 1: Syntax error: Bad fd number
2018-10-11 03:28:05 -04:00

4 lines
80 B
Text

rm -f log
redo fatal >/dev/null 2>&1 || true
[ "$(cat log)" = "ok" ] || exit 5