diff --git a/appveyor.yml b/appveyor.yml index 7f0ff22..c91e4ce 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -174,7 +174,7 @@ on_finish: $branchName = "asm/$($env:APPVEYOR_REPO_COMMIT)/appveyor-$($_.jobId)" git ls-remote --heads --exit-code https://github.com/dadonenf/GSL.git $branchName if($?){ - git push origin --delete asm/$($env:APPVEYOR_REPO_COMMIT)/appveyor-$($_.jobId) + git push origin --delete asm/$($env:APPVEYOR_REPO_COMMIT)/appveyor-$($_.jobId) 2>&1 } } } diff --git a/asm/scripts/push_asm.bat b/asm/scripts/push_asm.bat index 6c23566..9ff31d5 100644 --- a/asm/scripts/push_asm.bat +++ b/asm/scripts/push_asm.bat @@ -1,11 +1,11 @@ git config --global core.autocrlf false REM Get branch to check asm into -git checkout %APPVEYOR_REPO_BRANCH% -git checkout -b asm/%APPVEYOR_REPO_COMMIT%/appveyor-%APPVEYOR_JOB_ID% +git checkout %APPVEYOR_REPO_BRANCH% 2>&1 +git checkout -b asm/%APPVEYOR_REPO_COMMIT%/appveyor-%APPVEYOR_JOB_ID% 2>&1 REM Check asm into the branch git add "asm/*" git status git diff-index --cached --quiet --exit-code HEAD || git commit -m "[skip ci] Update ASM for %ASM_FOLDER%" -git push -u origin HEAD \ No newline at end of file +git push -u origin HEAD 2>&1 \ No newline at end of file