summaryrefslogtreecommitdiffstats
path: root/t/t9401-git-cvsserver-crlf.sh
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2009-03-07 00:04:09 +0100
committerJohannes Sixt <j6t@kdbg.org>2009-03-18 20:35:01 +0100
commit7fd3ef1fd73dffdb9b3445893ab579723ce08e74 (patch)
tree968949823530777a337d7313d373a184b279c3e9 /t/t9401-git-cvsserver-crlf.sh
parente986ceb05a118944d2638fba4cd09678c1afa6b3 (diff)
downloadgit-7fd3ef1fd73dffdb9b3445893ab579723ce08e74.tar.gz
git-7fd3ef1fd73dffdb9b3445893ab579723ce08e74.tar.xz
t9400, t9401: Do not force hard-linked clone
The tests do not depend on that the clones are hard-linked, but used --local only as an optimization: At the time that --local was used first in t9400 hard-linked clones were not the default, yet. By removing --local, we help filesystems that do not support hard-links. Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Diffstat (limited to 't/t9401-git-cvsserver-crlf.sh')
-rwxr-xr-xt/t9401-git-cvsserver-crlf.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9401-git-cvsserver-crlf.sh b/t/t9401-git-cvsserver-crlf.sh
index e27a1c5f8..5d6200c4d 100755
--- a/t/t9401-git-cvsserver-crlf.sh
+++ b/t/t9401-git-cvsserver-crlf.sh
@@ -84,7 +84,7 @@ test_expect_success 'setup' '
echo "subdir/file.h crlf" >> .gitattributes &&
git add .gitattributes textfile.c binfile.bin mixedUp.c subdir/* &&
git commit -q -m "First Commit" &&
- git clone -q --local --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
+ git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log"
'