We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc0b46c commit 49ba767Copy full SHA for 49ba767
.github/workflows/git-artifacts.yml
@@ -287,7 +287,10 @@ jobs:
287
set -x
288
BUILD_SRC=$(test x86_64 != "$ARCHITECTURE" || echo "--build-src-pkg")
289
# Make sure that there is a `/usr/bin/git` that can be used by `makepkg-mingw`
290
- printf '#!/bin/sh\n\nexec '$MINGW_PREFIX'/bin/git.exe "$@"\n' >/usr/bin/git &&
+ if test ! -x /usr/bin/git
291
+ then
292
+ printf '#!/bin/sh\n\nexec '$MINGW_PREFIX'/bin/git.exe "$@"\n' >/usr/bin/git
293
+ fi &&
294
(
295
cd /usr/src/MINGW-packages/mingw-w64-git/src/git &&
296
/usr/src/build-extra/please.sh build-mingw-w64-git --reset-pkgrel --only-$ARCHITECTURE $BUILD_SRC \
0 commit comments