From efa8abe09fa3fa48252ed50d1dc3b14717b3c1af Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Sun, 7 Mar 2021 13:16:34 +0100 Subject: [PATCH] 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 Signed-off-by: Johannes Schindelin --- .github/workflows/git-artifacts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/git-artifacts.yml b/.github/workflows/git-artifacts.yml index 91055fc7cf0a73..8b3d6030f00ff6 100644 --- a/.github/workflows/git-artifacts.yml +++ b/.github/workflows/git-artifacts.yml @@ -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