From d4b22ec8e6c56b76fa4dd102f48301a307d3b489 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 15 Sep 2016 17:47:12 +0100 Subject: [PATCH] chore: fix api docs issue on angular 2.0.0 (#2365) --- .travis.yml | 3 ++- scripts/deploy-install.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 50d2691978..c8c12208bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,8 @@ env: - DBUS_SESSION_BUS_ADDRESS=/dev/null - DISPLAY=:99.0 - CHROME_BIN=chromium-browser - - LATEST_RELEASE=2.0.0 + # using SHA instead of version to fix build-compile issue + - LATEST_RELEASE=cfc12c653970c9ad6d807a6a8ebff58edbc568a0 - TASK_FLAGS="--dgeni-log=warn" matrix: - TASK=lint diff --git a/scripts/deploy-install.sh b/scripts/deploy-install.sh index f34a158fbf..67c6ddd67f 100755 --- a/scripts/deploy-install.sh +++ b/scripts/deploy-install.sh @@ -10,7 +10,8 @@ else travis_fold start install.ng2 echo GETTING Angular2 from GitHub ... set -x - git clone https://github.com/angular/angular.git --branch $LATEST_RELEASE $NG2_REPO + git clone https://github.com/angular/angular.git $NG2_REPO + git -C $NG2_REPO checkout $LATEST_RELEASE set +x travis_fold end install.ng2 fi