https://github.com/angular/angular
Raw File
Tip revision: a0b06befb6972e96ce5b724c14a65f5382bd4eee authored by Alex Rickabaugh on 14 July 2017, 20:12:37 UTC
docs: add changelog for 4.3.0
Tip revision: a0b06be
print-logs.sh
#!/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
back to top