Skip to content
Snippets Groups Projects
Commit 5eb226d6 authored by Donald Stufft's avatar Donald Stufft
Browse files

Ignore errors

parent 06640dca
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ class build_clib(_build_clib): ...@@ -46,7 +46,7 @@ class build_clib(_build_clib):
sourcefile.extractall(tmpdir) sourcefile.extractall(tmpdir)
# Copy our installed directory into the build location # Copy our installed directory into the build location
shutil.rmtree(here("build/sodium")) shutil.rmtree(here("build/sodium"), ignore_errors=True)
shutil.copytree( shutil.copytree(
os.path.join(tmpdir, "libsodium-%s" % SODIUM_VERSION), os.path.join(tmpdir, "libsodium-%s" % SODIUM_VERSION),
here("build/sodium") here("build/sodium")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment