diff --git a/.appveyor.yml b/.appveyor.yml index ba7290e9..8d141afc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,7 @@ environment: install: - set BOOST_ROOT=c:\projects\boost - cd c:\projects\ - - python %APPVEYOR_BUILD_FOLDER%\build\download-boost-snapshot.py master + - python %APPVEYOR_BUILD_FOLDER%\ci\download-boost-snapshot.py master - rd /s /q %BOOST_ROOT%\boost\unordered - cd %BOOST_ROOT%\tools\build - cmd /c bootstrap diff --git a/.travis.yml b/.travis.yml index cc1829f1..fa636c50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,7 @@ before_script: echo "Downloading ${download_url}" mkdir $HOME/download cd $HOME/download - python ${TRAVIS_BUILD_DIR}/build/download-boost-snapshot.py $snapshot + python ${TRAVIS_BUILD_DIR}/ci/download-boost-snapshot.py $snapshot mv * ${BOOST_ROOT} - rm -r ${BOOST_ROOT}/boost/unordered - cd ${BOOST_ROOT}/tools/build diff --git a/build/download-boost-snapshot.py b/ci/download-boost-snapshot.py similarity index 100% rename from build/download-boost-snapshot.py rename to ci/download-boost-snapshot.py