diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-03 11:31:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-03 11:31:10 +0200 |
commit | 7b57a01988f1a0f77b66ac69fdb5fb03c4aff60f (patch) | |
tree | 8325f11f71e41282b700f46a38422bfb87f14574 /test/setup | |
parent | fbbb2216fc201b9f7a8dc821925203ce7672d27d (diff) |
Made tests less spammy
Diffstat (limited to 'test/setup')
-rw-r--r-- | test/setup | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,12 +1,12 @@ ## vim:ft=zsh echo "# setting up PKG_ROOT" cd $test_proot -git clone ${1-git://git.tabularazor.org/~derf/pkg} core +git clone --quiet ${1-git://git.tabularazor.org/~derf/pkg} core cp core/include/pkglist pkglist for repo in ra rb rc; ( mkdir $repo cd $repo - git init + git init --quiet git config receive.denyCurrentBranch ignore touch foo mkdir bin @@ -16,11 +16,11 @@ for repo in ra rb rc; ( chmod 755 bin/$repo echo 'touch ~/prereq_ok_'$repo > prereqs git add . - git commit -m 'initial commit' + git commit --quiet -m 'initial commit' cd .. mkdir ${repo}-bare cd ${repo}-bare - git --bare init + git --bare init --quiet cd ../$repo git push ../${repo}-bare master ) |