summaryrefslogtreecommitdiff
path: root/test/setup
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-03 11:31:10 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-03 11:31:10 +0200
commit7b57a01988f1a0f77b66ac69fdb5fb03c4aff60f (patch)
tree8325f11f71e41282b700f46a38422bfb87f14574 /test/setup
parentfbbb2216fc201b9f7a8dc821925203ce7672d27d (diff)
Made tests less spammy
Diffstat (limited to 'test/setup')
-rw-r--r--test/setup8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/setup b/test/setup
index e86739b..c1d7b20 100644
--- a/test/setup
+++ b/test/setup
@@ -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
)