mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
7 lines
105 B
Bash
7 lines
105 B
Bash
if ruby -rubygems t1.rb > /dev/null 2>&1; then
|
|
echo "t1 OK"
|
|
exit 0
|
|
else
|
|
echo "t1 FAIL"
|
|
exit 1
|
|
fi
|