diff options
author | Nils Freydank <nils.freydank@posteo.de> | 2020-08-09 13:03:04 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-08-13 00:10:41 +0200 |
commit | 450bd4f6398cd138214710c89029aace7f7fb3d3 (patch) | |
tree | 98e9d6822550710a686649b162401158770c81fe /dev-vcs | |
parent | sys-block/thin-provisioning-tools: Removed unavailable ruby:2.4 dep (diff) | |
download | gentoo-450bd4f6398cd138214710c89029aace7f7fb3d3.tar.gz gentoo-450bd4f6398cd138214710c89029aace7f7fb3d3.tar.bz2 gentoo-450bd4f6398cd138214710c89029aace7f7fb3d3.zip |
dev-vcs/git-lfs: Add a note about manual post install step
It's necessary to call 'git lfs install' once for each user running
git-lfs, so add a note on first installation.
Reported-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Bug: https://bugs.gentoo.org/show_bug.cgi?id=733372
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-lfs/git-lfs-2.11.0.ebuild | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild b/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild index 3bbf8d4e3001..6fdbdcf910e1 100644 --- a/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild +++ b/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild @@ -52,3 +52,11 @@ src_test() { echo "$@" "$@" || die } + +pkg_postinst () { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "Run \'git lfs install\' once for each user account manually." + elog "For more details see https://bugs.gentoo.org/show_bug.cgi?id=733372." + fi +} |