summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_git.subr
blob: 67c0545804420c329df8e7a097ea11ed878f7717 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# set -o errexit -o noglob are assumed.
#

pkg_fetch_git() {
	if [ -n "${PKG_URLS_GIT}" ]; then
		ex_rtl_fetch_urls_git "${PKG_BASE_DIR}" ${PKG_URLS_GIT};
	fi;
};

# vim:filetype=sh