summaryrefslogtreecommitdiff
path: root/test/pull-prepare
blob: a7022fe89c5467d47f4763740259519539b4bd76 (plain)
1
2
3
4
5
6
7
8
9
## vim:ft=zsh
if [[ $repo == $file ]] {
	echo "# Creating new commit in PKG_ROOT"
	cd $test_proot/$file
	git checkout -f
	echo $RANDOM > baz
	git add baz
	git commit -m 'floeppel'
}