diff options
Diffstat (limited to 't')
-rw-r--r-- | t/perf/perf-lib.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/perf/perf-lib.sh b/t/perf/perf-lib.sh index 5cf74eddec..9fa07066d1 100644 --- a/t/perf/perf-lib.sh +++ b/t/perf/perf-lib.sh @@ -96,7 +96,10 @@ test_perf_create_repo_from () { esac done && cd .. && - git init -q && + git init -q && { + test_have_prereq SYMLINKS || + git config core.symlinks false + } && mv .git/hooks .git/hooks-disabled 2>/dev/null ) || error "failed to copy repository '$source' to '$repo'" } |