Fix environment variable syntax in .travis.yml.

This commit is contained in:
Peter Dimov
2016-05-21 19:00:31 +03:00
parent d6e4fab051
commit 36b157c3e8

View File

@@ -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 language: cpp
os: os:
@@ -10,7 +14,7 @@ branches:
- develop - develop
install: 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 - cd boost
- git submodule init libs/bind - git submodule init libs/bind
- git submodule init libs/assert - git submodule init libs/assert
@@ -31,7 +35,7 @@ install:
- git submodule init tools/inspect - git submodule init tools/inspect
- git submodule update - git submodule update
- cd libs\bind - cd libs\bind
- git checkout -q %TRAVIS_COMMIT% - git checkout -q $TRAVIS_COMMIT
- cd ..\.. - cd ..\..
- bootstrap - bootstrap
- b2 headers - b2 headers