diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-28 14:57:40 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-28 14:57:40 +0000 |
commit | 49c328a8927a913c4905f0c136fc6ce90e361b6e (patch) | |
tree | 100151d8134849d5c498178830f064fedd2a1fde /jenkins.sh | |
parent | Pin pynacl to 0.3.0 (diff) | |
download | synapse-49c328a8927a913c4905f0c136fc6ce90e361b6e.tar.xz |
Prune on fetching
So we don't try to checkout a stale ref
Diffstat (limited to 'jenkins.sh')
-rwxr-xr-x | jenkins.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins.sh b/jenkins.sh index 804bbd49f1..ed3bdf80fa 100755 --- a/jenkins.sh +++ b/jenkins.sh @@ -26,7 +26,7 @@ TOX_BIN=$WORKSPACE/.tox/py27/bin if [[ ! -e .sytest-base ]]; then git clone https://github.com/matrix-org/sytest.git .sytest-base --mirror else - (cd .sytest-base; git fetch) + (cd .sytest-base; git fetch -p) fi rm -rf sytest |