From 09d3710bcf45f53fcbc909c2f28fa470c42b4f4a Mon Sep 17 00:00:00 2001 From: maurizio vitale Date: Wed, 28 Aug 2019 16:52:53 +0100 Subject: [PATCH] Get the latest alpha before the install --- scripts/travis/build/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/travis/build/build.sh b/scripts/travis/build/build.sh index 3c4d279e96..21144f3685 100755 --- a/scripts/travis/build/build.sh +++ b/scripts/travis/build/build.sh @@ -6,12 +6,13 @@ cd $DIR/../../../ rm -rf tmp && mkdir tmp; +./scripts/update-version.sh -gnu -alpha || exit 1; + if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then ./scripts/update-version.sh -nextalpha -gnu -minor -components ./scripts/npm-build-all.sh -c || exit 1; else - ./scripts/update-version.sh -gnu -alpha || exit 1; ./scripts/smart-build.sh -b $TRAVIS_BRANCH -gnu || exit 1; fi;