summaryrefslogtreecommitdiffhomepage
path: root/vars/git.vars
blob: fc5fb89c29e147171474ebd8386c52e4302ca2f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# set -o errexit -o noglob are assumed.
#

pkg_git_install_post() {
	local __ _new;
	for __ in $(find "${PKG_DESTDIR}" -name "Git*::*" -type f); do
		_new="$(echo ${__} | sed "s/::/./g")";
		ex_build_fileop mv "${__}" "${_new}";
	done;
};

# vim:filetype=sh