summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-19 16:17:00 -0400
committerJoey Hess <joey@kitenet.net>2013-11-19 16:17:00 -0400
commitf8d8a88a8edbd36ca287060e4a98cb48a3a8ee50 (patch)
tree9335900edd5af98e0a2025b6c093a991266c3fc8
parente011fd72ef69dbbaa4f63bfd61564e0918cb3e22 (diff)
downloadgit-repair-f8d8a88a8edbd36ca287060e4a98cb48a3a8ee50.tar.gz
fix corruption of origin repo
-rw-r--r--test-runner.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-runner.hs b/test-runner.hs
index 6687744..71e8d9a 100644
--- a/test-runner.hs
+++ b/test-runner.hs
@@ -40,6 +40,7 @@ runTest settings = withTmpDir "tmprepo" $ \tmpdir -> do
let cloneloc = tmpdir </> "clone"
cloned <- boolSystem "git"
[ Param "clone"
+ , Param "--no-hardlinks"
, File (originalGitRepo settings)
, File cloneloc
]