Skip to content

Commit

Permalink
move git-lfs binary to within git-core
Browse files Browse the repository at this point in the history
It was never meant to be a top-level executable, but always intended to be
called like all other regular Git commands (and likewise, we did not want
to clutter the PATH with it).

Signed-off-by: Brendan Forster <brendan@github.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
shiftkey authored and dscho committed Apr 4, 2017
1 parent 1de64e1 commit 5f7d447
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mingw-w64-git-lfs/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ _realname="git-lfs"
pkgbase="mingw-w64-${_realname}"
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
pkgver=2.0.2
pkgrel=1
pkgrel=2
pkgdesc="An open source Git extension for versioning large files"
install=git-lfs.install
arch=('any')
Expand Down Expand Up @@ -34,6 +34,6 @@ sha256sums=("$sha256sum" SKIP)
options=('!strip')

package() {
install -d -m755 $pkgdir/$MINGW_PREFIX/bin
install -m755 $srcdir/$folder/git-lfs.exe $pkgdir/$MINGW_PREFIX/bin/git-lfs.exe
install -d -m755 $pkgdir/$MINGW_PREFIX/libexec/git-core
install -m755 $srcdir/$folder/git-lfs.exe $pkgdir/$MINGW_PREFIX/libexec/git-core/git-lfs.exe
}

0 comments on commit 5f7d447

Please sign in to comment.