From 4e589cf2a34a071a668ad1e73b644c04efc98ed2 Mon Sep 17 00:00:00 2001 From: Liam Grace Date: Tue, 14 Mar 2017 10:22:57 +0000 Subject: [PATCH 1/2] Updated lerna version in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5314d0f9f..c6ee039518 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ You should see messages indicating that the required git repositories have been You must install [Lerna](https://lernajs.io) to build this multi-package repository: - $ npm install -g lerna@2.0.0-beta.32 + $ npm install -g lerna@2.0.0-beta.38 You must bootstrap the repository so that all of the dependencies are installed and all of the packages are linked together: From a3416657a6193fb13a1ee2175f0aa8ea83c9e670 Mon Sep 17 00:00:00 2001 From: Liam Grace Date: Thu, 16 Mar 2017 14:22:53 +0000 Subject: [PATCH 2/2] Fix if statement issue --- .travis/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index 9f858305d2..decfe2e4e4 100755 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -37,9 +37,9 @@ fi # are we building the docs? if [ "${DOCS}" != "" ]; then if [ -z "${TRAVIS_TAG}" ]; then - DOCS="full" - else DOCS="unstable" + else + DOCS="full" fi ./.travis/deploy_docs.sh exit 0