auto merge of #11291 : brson/rust/copy-runtime-deps, r=alexcrichton

In copying the license for the third-party bins it is attempting
to delete a directory that doesn't exist.
This commit is contained in:
bors 2014-01-04 03:56:55 -08:00
commit 690e464444
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ def copy_runtime_deps(dest_dir):
shutil.copy(path, dest_dir)
lic_dest = os.path.join(dest_dir, "third-party")
shutil.rmtree(lic_dest) # copytree() won't overwrite existing files
if os.path.exists(lic_dest):
shutil.rmtree(lic_dest) # copytree() won't overwrite existing files
shutil.copytree(os.path.join(os.path.dirname(__file__), "third-party"), lic_dest)
copy_runtime_deps(sys.argv[1])