Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git: credential helper must be installed in libexec/git-core
git expects to find credential helpers in libexec/git-core/ not bin.

The credential osxkeychain helper was being installed into bin/.
  • Loading branch information
barry-scott authored and tobypeterson committed Feb 7, 2017
1 parent 98bc379 commit 663d6d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devel/git/Portfile
Expand Up @@ -5,6 +5,7 @@ PortGroup perl5 1.0

name git
version 2.11.0
revision 1

description A fast version control system
long_description Git is a fast, scalable, distributed open source version \
Expand Down Expand Up @@ -209,7 +210,7 @@ variant credential_osxkeychain description {Install git credential-osxkeychain u

pre-destroot {
xinstall -m 755 "${worksrcpath}/contrib/credential/osxkeychain/git-credential-osxkeychain" \
"${destroot}${prefix}/bin/"
"${destroot}${prefix}/libexec/git-core/"
}
}

Expand Down

0 comments on commit 663d6d9

Please sign in to comment.