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:18:57 +0200 |
commit | 734499ca9321fa6c3d15704bf5a7fcf9aa77b8d9 (patch) | |
tree | eee393bc7f675e6636b6ce68eeaac0494d09d253 | |
parent | 584abcb6690aa47886c2d8a2b5821292fab5d904 (diff) | |
download | aports-734499ca9321fa6c3d15704bf5a7fcf9aa77b8d9.tar.bz2 aports-734499ca9321fa6c3d15704bf5a7fcf9aa77b8d9.tar.xz |
community/git-lfs: fix post-install, don't install lfs in local repo
As suggested by Kapczuk Piotr.
-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 080d5c5067..a01223eed6 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.3.4 -pkgrel=2 +pkgrel=3 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 |