0eaa98221b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
7 lines
147 B
Bash
Executable file
7 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
# Auxiliary script that succeeds iff if the execution of input
|
|
# arguments fail.
|
|
if $*; then
|
|
echo "unexpected success"
|
|
exit 1
|
|
fi
|