File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ echo "##########################################################################
8383if [ -z " $SKIP_GITDAEMON_TESTS " ]; then
8484 echo " Starting git daemon..."
8585 GITDAEMON_DIR=` mktemp -d ${TMPDIR} /gitdaemon.XXXXXXXX`
86- git init --bare " ${GITDAEMON_DIR} /test.git"
86+ git init --bare " ${GITDAEMON_DIR} /test.git" > /dev/null
8787 git daemon --listen=localhost --export-all --enable=receive-pack --base-path=" ${GITDAEMON_DIR} " " ${GITDAEMON_DIR} " 2> /dev/null &
8888 GITDAEMON_PID=$!
8989 disown $GITDAEMON_PID
@@ -112,10 +112,11 @@ if [ -z "$SKIP_NTLM_TESTS" -o -z "$SKIP_ONLINE_TESTS" ]; then
112112fi
113113
114114if [ -z " $SKIP_SSH_TESTS " ]; then
115+ echo " "
115116 echo " Starting ssh daemon..."
116117 HOME=` mktemp -d ${TMPDIR} /home.XXXXXXXX`
117118 SSHD_DIR=` mktemp -d ${TMPDIR} /sshd.XXXXXXXX`
118- git init --bare " ${SSHD_DIR} /test.git"
119+ git init --bare " ${SSHD_DIR} /test.git" > /dev/null
119120 cat > " ${SSHD_DIR} /sshd_config" << -EOF
120121 Port 2222
121122 ListenAddress 0.0.0.0
You can’t perform that action at this time.
0 commit comments