From 93c39a536fd6c4362ba924b4d34aa3f30f573538 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 1 Jun 2015 13:44:05 -0500 Subject: [PATCH] Appveyor steps are not isolated, so fix init step to restore CWD. --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index e21201c..4f4b2f3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,9 +18,10 @@ environment: - TOOLSET: vs-2013 init: - - cd .. + - cd %APPVEYOR_BUILD_FOLDER%/.. - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/script.py" - dir + - cd %APPVEYOR_BUILD_FOLDER% install: python ../script.py install before_build: python ../script.py before_build build_script: python ../script.py build_script