https://github.com/angular/angular
Raw File
Tip revision: 49d122e560df9c2722e1b085b406688ec46bae5a authored by Igor Minar on 19 September 2017, 04:14:03 UTC
release: cut the 4.4.2 release
Tip revision: 49d122e
test-aio-tools.sh
#!/usr/bin/env bash

set -u -e -o pipefail

# Setup environment
readonly thisDir=$(cd $(dirname $0); pwd)
source ${thisDir}/_travis-fold.sh


travisFoldStart "test.docs"
  (
    cd ${PROJECT_ROOT}/aio
    yarn tools-test
  )
travisFoldEnd "test.docs"
back to top