Files
arcs/arcs-sdk/modules/cpputest/scripts/travis_ci_after.sh
2026-08-13 16:50:52 +08:00

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