summaryrefslogtreecommitdiff
path: root/java/eclipse/scripts/pre-build
blob: db36a8e19b01f915fc87a38f5dccea17d925569f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

cd ${WRKSRC}

# Create dummy repo for jgit
if [ ! -d .git ]; then
	mkdir ${WRKDIR}/githome
	(
		export HOME=${WRKDIR}/githome
		git config --global user.email "eclipse@freebsd.org"
		git config --global user.name "Eclipse"
		git init
		git add .
		git commit -q --message="java/eclipse" --author="Eclipse <eclipse@freebsd.org>"
	)
fi