https://github.com/angular/angular
Raw File
Tip revision: 95e9107899e504a87a8c464ec1a3542a5ae2d5cd authored by Alex Rickabaugh on 16 May 2018, 21:45:13 UTC
docs: add changelog for 5.2.11
Tip revision: 95e9107
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