From c0fcd11ea0074d8cd019ed7087282754ea3ff792 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 3 Mar 2014 18:22:44 -0800 Subject: Herpaderp, copy not move --- tasks.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index d48a0de0..c9844780 100644 --- a/tasks.py +++ b/tasks.py @@ -1,5 +1,6 @@ +from os import mkdir from os.path import join -from shutil import rmtree, move +from shutil import rmtree, copytree from invoke import Collection, ctask as task from invocations import docs as _docs @@ -38,8 +39,9 @@ def coverage(ctx): @task('docs') # Will invoke the API doc site build def release(ctx): # Move the built docs into where Epydocs used to live - rmtree('docs') - move(docs_build, 'docs') + target = 'docs' + rmtree(target, ignore_errors=True) + copytree(docs_build, target) # Publish publish(ctx) -- cgit v1.2.1