From 36b157c3e8904fd0068cc399f808ed807acc3e9d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 21 May 2016 19:00:31 +0300 Subject: [PATCH] Fix environment variable syntax in .travis.yml. --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d43740..4cc994b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,7 @@ +# Copyright 2016 Peter Dimov +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) + language: cpp os: @@ -10,7 +14,7 @@ branches: - develop install: - - git clone -b %TRAVIS_BRANCH% https://github.com/boostorg/boost.git boost + - git clone -b $TRAVIS_BRANCH https://github.com/boostorg/boost.git boost - cd boost - git submodule init libs/bind - git submodule init libs/assert @@ -31,7 +35,7 @@ install: - git submodule init tools/inspect - git submodule update - cd libs\bind - - git checkout -q %TRAVIS_COMMIT% + - git checkout -q $TRAVIS_COMMIT - cd ..\.. - bootstrap - b2 headers