mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
18 lines
248 B
Bash
Executable File
18 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "\n=== SUREFIRE REPORTS ===\n"
|
|
|
|
for file in target/surefire-reports/*.txt
|
|
do
|
|
echo ${file}
|
|
cat ${file}
|
|
echo
|
|
done
|
|
|
|
for file in ebean-autotune/target/surefire-reports/*.txt
|
|
do
|
|
echo ${file}
|
|
cat ${file}
|
|
echo
|
|
done
|