From 9c164a2c5cd1dea7b8020af06261e758aa6b0a3c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 7 Apr 2019 21:03:20 -0400 Subject: [PATCH] Okay, at this point I'm betting pushd/popd just don't work on AppVeyor's cmd.exe. I'm betting it has to do with popd /? showing me the output of call /? instead. Just use cd. --- .appveyor.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d5e43acb..3540a722 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -65,7 +65,7 @@ after_build: - set "version=%APPVEYOR_REPO_BRANCH%" - if %APPVEYOR_REPO_TAG%==true ( set "version=%APPVEYOR_REPO_TAG_NAME%" ) - set "artifact=%version%-windows-%arch%-%compiler%-%libtype%" - - pushd build\meson-out + - cd build\meson-out # TODO msvc only? - if %libtype%==static ( ren libui.a libui.lib ) - copy ..\..\ui.h . @@ -76,7 +76,6 @@ after_build: - 7z a "%APPVEYOR_BUILD_FOLDER%\libui-%artifact%.zip" %libfiles% ui.h ui_windows.h - 7z a "%APPVEYOR_BUILD_FOLDER%\examples-%artifact%.zip" controlgallery.exe cpp-multithread.exe datetime.exe drawtext.exe histogram.exe tester.exe timer.exe - del ui.h ui_windows.h - - popd artifacts: - path: libui-*.zip