diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-06 18:11:44 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-06 18:11:44 +0100 |
commit | 36cb95648779afb86477542d9cf11ab46d17c6f4 (patch) | |
tree | 65c8e2657eb7c551b7019490ccac7cc67b3332a8 /bin | |
parent | f96ae5d043162cc6d6a0afcb5575c60b4be44fe9 (diff) | |
download | jenkins.debian.net-36cb95648779afb86477542d9cf11ab46d17c6f4.tar.xz |
torbrowser tests: preserve .git* when creating a git workspace copy
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/test_torbrowser-launcher.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/test_torbrowser-launcher.sh b/bin/test_torbrowser-launcher.sh index b69addef..69ef2d86 100755 --- a/bin/test_torbrowser-launcher.sh +++ b/bin/test_torbrowser-launcher.sh @@ -410,7 +410,7 @@ prepare_git_workspace_copy() { echo "$(date -u) - preparing git workspace copy in $TMPDIR/git" git branch -av mkdir $TMPDIR/git - cp -r * $TMPDIR/git + cp -r .git* * $TMPDIR/git echo } |