mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
18 lines
343 B
Bash
Executable file
18 lines
343 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -u -e -o pipefail
|
|
|
|
# Setup environment
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
|
|
for FILE in ${LOGS_DIR}/*; do
|
|
travisFoldStart "print log file: ${FILE}"
|
|
cat $FILE
|
|
travisFoldEnd "print log file: ${FILE}"
|
|
done
|
|
|
|
|
|
# Print return arrows as a log separator
|
|
travisFoldReturnArrows
|