From ff30267f1ef58fcc212c447912a109211f76cc60 Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 27 Sep 2015 22:31:12 +0100 Subject: [PATCH] Change to the build directory before Git push in AppVeyor. --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 44a9d6a925..c1ca547d8c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -56,8 +56,10 @@ on_success: - git config --global user.name "CppSharp CI" - git config --global credential.helper store - ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:GITHUB_ACCESS_TOKEN):x-oauth-basic@github.com`n" + - dir - git remote set-url origin https://github.com/mono/CppSharp.git - '%LIB_PATH%\CppSharp.Parser.Gen.exe' + - cd %APPVEYOR_BUILD_FOLDER% - git commit -a -m "CI: Re-generated the parser bindings" - git push