mirror of
https://github.com/git-for-windows/git.git
synced 2026-03-17 04:23:29 -05:00
fixup! git-artifacts: add workaround for GCM Core on ARM64
It turned out that our workaround doesn't work if the git-credential-manager-core wrapper is put into the /arm64/bin folder, but is does work when putting it into the /arm64/libexec folder. This PR moves the git-credential-manager-core wrapper to /arm64/libexec. Signed-off-by: Dennis Ameling <dennis@dennisameling.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
committed by
Johannes Schindelin
parent
45d9a3e9f0
commit
efa8abe09f
4
.github/workflows/git-artifacts.yml
vendored
4
.github/workflows/git-artifacts.yml
vendored
@@ -425,8 +425,8 @@ jobs:
|
||||
if: matrix.arch.arm64 == true
|
||||
shell: bash
|
||||
run: |
|
||||
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
|
||||
chmod +x arm64/bin/git-credential-manager-core
|
||||
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core
|
||||
chmod +x arm64/libexec/git-core/git-credential-manager-core
|
||||
- name: Clone and update build-extra
|
||||
if: env.SKIP != 'true'
|
||||
shell: bash
|
||||
|
||||
Reference in New Issue
Block a user