diff options
author | Andreas Fischer <bantu@owncloud.com> | 2014-04-07 14:06:20 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2014-04-07 14:06:20 +0200 |
commit | de07f25bc29abf7aa44cdfdb956f810b14d08d1b (patch) | |
tree | e8bb515f4722988c36a385868ae582735ed3391e /autotest.sh | |
parent | 3c9f5884490ab2e2d04eec1eb547aba036a1386e (diff) | |
download | nextcloud-server-de07f25bc29abf7aa44cdfdb956f810b14d08d1b.tar.gz nextcloud-server-de07f25bc29abf7aa44cdfdb956f810b14d08d1b.zip |
Use git checkout on directory as some files may not be in git resulting in, e.g.:
error: pathspec 'tests/data/lorem-copy.txt' did not match any file(s) known to git.
error: pathspec 'tests/data/testimage-copy.png' did not match any file(s) known to git.
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotest.sh b/autotest.sh index b88e9cf68b4..4030fc0250e 100755 --- a/autotest.sh +++ b/autotest.sh @@ -139,7 +139,7 @@ function execute_tests { cd $BASEDIR # revert changes to tests/data - git checkout tests/data/* + git checkout tests/data # reset data directory rm -rf $DATADIR |