mirror of https://github.com/docker/docs.git
fetch-upstream-resources: fix .svn cleanup step
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
8eb6ee6cb8
commit
a5ab6fa4f8
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue