summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2021-06-23 15:24:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-06-29 03:35:39 (GMT)
commitabb2b389f7604704d3e78ae24e52e1a9429b699d (patch)
tree5db90aecc30f55701076f734abf44ad89fbda5cf /.github
parent0eb6c189a3576aa8745f471c1ad23b3ca123cc75 (diff)
downloadgit-abb2b389f7604704d3e78ae24e52e1a9429b699d.zip
git-abb2b389f7604704d3e78ae24e52e1a9429b699d.tar.gz
git-abb2b389f7604704d3e78ae24e52e1a9429b699d.tar.bz2
ci (vs-build): use `cmd` to copy the DLLs, not `powershell`
We use a `.bat` script to copy the DLLs in the `vs-build` job, and those type of scripts are native to CMD, not to PowerShell. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c62766e..d430c4e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -152,10 +152,8 @@ jobs:
- name: add msbuild to PATH
uses: microsoft/setup-msbuild@v1
- name: copy dlls to root
- shell: powershell
- run: |
- & compat\vcbuild\vcpkg_copy_dlls.bat release
- if (!$?) { exit(1) }
+ shell: cmd
+ run: compat\vcbuild\vcpkg_copy_dlls.bat release
- name: generate Visual Studio solution
shell: bash
run: |