12 lines
148 B
Bash
Executable File
12 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
# Script run in the travis CI
|
|
set -ex
|
|
|
|
FILE="./test-suite.log"
|
|
|
|
if [ -f $FILE ]; then
|
|
cat $FILE
|
|
else
|
|
echo "$FILE not found."
|
|
fi
|