blob: c50ad8ef14f238aea5f34077dd0139f00dd0350d (
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 -q -f
echo $RANDOM > baz
git add baz
git commit --quiet -m 'floeppel'
}
|