Merge pull request #11268 from nextcloud/include-empty-directories-in-the-default-state-of-acceptance-tests

Include empty directories in the default state of acceptance tests
This commit is contained in:
blizzz 2018-09-19 12:43:44 +02:00 committed by GitHub
commit b75dde0c9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -206,6 +206,8 @@ su --shell /bin/bash --login www-data --command "cd $NEXTCLOUD_DIR && $ACCEPTANC
echo "Saving the default state so acceptance tests can reset to it" echo "Saving the default state so acceptance tests can reset to it"
find . -name ".gitignore" -exec rm --force {} \; find . -name ".gitignore" -exec rm --force {} \;
# Create dummy files in empty directories to force Git to save the directories.
find . -not -path "*.git*" -type d -empty -exec touch {}/.keep \;
git add --all && echo 'Default state' | git -c user.name='John Doe' -c user.email='john@doe.org' commit --quiet --file=- git add --all && echo 'Default state' | git -c user.name='John Doe' -c user.email='john@doe.org' commit --quiet --file=-
cd tests/acceptance cd tests/acceptance