Skip to content

Commit efa8abe

Browse files
dennisamelingdscho
authored andcommitted
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 <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 45d9a3e commit efa8abe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ jobs:
425425
if: matrix.arch.arm64 == true
426426
shell: bash
427427
run: |
428-
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
429-
chmod +x arm64/bin/git-credential-manager-core
428+
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-core/git-credential-manager-core
429+
chmod +x arm64/libexec/git-core/git-credential-manager-core
430430
- name: Clone and update build-extra
431431
if: env.SKIP != 'true'
432432
shell: bash

0 commit comments

Comments
 (0)