fetch-upstream-resources: fix .svn cleanup step

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-03-15 18:22:56 +01:00
parent 8eb6ee6cb8
commit a5ab6fa4f8
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ svn co "https://github.com/docker/distribution/${distribution_svn_branch}/docs/s
svn co "https://github.com/mirantis/compliance/trunk/docs/compliance" ./compliance || (echo "Failed docker/compliance download" && exit 1)
# Cleanup svn directories
find . -name .svn -exec rm -rf '{}' \;
find . -name ".svn" -print0 | xargs -0 /bin/rm -rf
# Get the Engine APIs that are in Swagger
# Add a new engine/api/<version>.md file to add a new API version page.