diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-09-04 11:15:11 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-09-04 11:17:27 +0200 |
commit | a8d4777e2002926a74c002c100cdfe3c41ae7382 (patch) | |
tree | 7c4a30a1d5f6f8e056441856afc0638f8dea87ad /community/git-lfs | |
parent | 81078cb568529738873dd2e62c6660556acdb6c9 (diff) | |
download | aports-a8d4777e2002926a74c002c100cdfe3c41ae7382.tar.bz2 aports-a8d4777e2002926a74c002c100cdfe3c41ae7382.tar.xz |
community/git-lfs: fix post-install, don't install lfs in local repo
As suggested by Kapczuk Piotr.
Diffstat (limited to 'community/git-lfs')
-rw-r--r-- | community/git-lfs/APKBUILD | 2 | ||||
-rw-r--r-- | community/git-lfs/git-lfs.post-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/community/git-lfs/APKBUILD b/community/git-lfs/APKBUILD index f6a5b8fd54..d89ca876b3 100644 --- a/community/git-lfs/APKBUILD +++ b/community/git-lfs/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=git-lfs pkgver=2.4.2 -pkgrel=0 +pkgrel=1 pkgdesc="Git extension for versioning large files" url="https://git-lfs.github.io/" arch="all" diff --git a/community/git-lfs/git-lfs.post-install b/community/git-lfs/git-lfs.post-install index cc239e075e..cc9a36578e 100644 --- a/community/git-lfs/git-lfs.post-install +++ b/community/git-lfs/git-lfs.post-install @@ -1,3 +1,3 @@ #!/bin/sh -git-lfs install --system +git-lfs install --skip-repo --system |