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:16:38 +0200 |
commit | 11e973581e4c0a12b44f6d2c56307e12f91b380c (patch) | |
tree | aa8e05e78b94fbf061ff5c107a0ac9148fd2842c | |
parent | ec19bbe03b5e0bbf34d7bf1da81b580de2122c1c (diff) | |
download | aports-11e973581e4c0a12b44f6d2c56307e12f91b380c.tar.bz2 aports-11e973581e4c0a12b44f6d2c56307e12f91b380c.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 ad7bc2f1a1..b54f4fdaac 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.5.1 -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 |