diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-04-25 16:41:30 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-04-25 16:41:30 -0700 |
commit | 7441bb4b85a75869aa7604c0315f4c9f743b04c6 (patch) | |
tree | f597f6d905567fd1caf0d6f299a4e6989d95c9d5 /appveyor.yml | |
parent | 6b53a312cc5ec7caee8aec46c501666783dd198b (diff) |
appveyor - removed pushd/popd
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index ba535d8..44ad7f0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,12 +11,11 @@ install: build_script: - | mkdir build 2> nul - pushd build + cd build cmake -G "NMake Makefiles" -D CMAKE_BUILD_TYPE="Release" -D CMAKE_INSTALL_PREFIX="windows" .. nmake /nologo - popd test_script: - | - pushd build && nmake /nologo test + cd build && nmake /nologo test |