Skip to content

Commit 32a7be4

Browse files
committed
lfs: separate zip name from folder name
Git LFS sometimes packages the .exe files in subdirectories, sometimes not. Let's separate the name of the .zip file from the folder name so that we can adjust one without the other. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9aea164 commit 32a7be4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mingw-w64-git-lfs/PKGBUILD

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,18 @@ groups=('VCS')
1515

1616
case "$CARCH" in
1717
i686)
18+
zipname="git-lfs-windows-386-$pkgver.zip"
1819
folder="git-lfs-windows-386-$pkgver"
1920
sha256sum=897571c2b8aa777d011e7c5496735e9dcb2da809faa741b113169a5cb04650bd
2021
;;
2122
x86_64)
23+
zipname="git-lfs-windows-amd64-$pkgver.zip"
2224
folder="git-lfs-windows-amd64-$pkgver"
2325
sha256sum=0866259d6b097f8ff379326f798a93034b61952382011671b80ecf4cc733de57
2426
;;
2527
esac
2628

27-
source=("https://github.com/github/git-lfs/releases/download/v$pkgver/$folder.zip"
29+
source=("https://github.com/github/git-lfs/releases/download/v$pkgver/$zipname"
2830
"$src_zip_url")
2931

3032
# Git LFS' source .zip now contains symbolic links that bsdtar does not like...

0 commit comments

Comments
 (0)