Skip to content

Commit c74e2c4

Browse files
committed
git-artifacts: Update ARM64 GCM Core workaround
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]>
1 parent 4321276 commit c74e2c4

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
@@ -392,8 +392,8 @@ jobs:
392392
if: matrix.arch.arm64 == true
393393
shell: bash
394394
run: |
395-
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
396-
chmod +x arm64/bin/git-credential-manager-core
395+
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/libexec/git-credential-manager-core
396+
chmod +x arm64/libexec/git-credential-manager-core
397397
- name: Clone and update build-extra
398398
if: env.SKIP != 'true'
399399
shell: bash

0 commit comments

Comments
 (0)