Skip to content
Snippets Groups Projects
Commit db7e05cd authored by akwizgran's avatar akwizgran
Browse files

Allow directories to exist already.

parent 30826f20
Branches
No related tags found
1 merge request!36Add Tor 0.4.8.9
...@@ -42,8 +42,8 @@ def setup(): ...@@ -42,8 +42,8 @@ def setup():
def build(): def build():
versions, jar_name = setup() versions, jar_name = setup()
copytree('pre-out', os.path.join(BUILD_DIR, 'out')) copytree('pre-out', os.path.join(BUILD_DIR, 'out'), dirs_exist_ok=True)
copytree('pre-clones', os.path.join(BUILD_DIR, 'git_clones')) copytree('pre-clones', os.path.join(BUILD_DIR, 'git_clones'), dirs_exist_ok=True)
build_arch(versions, 'aarch64') build_arch(versions, 'aarch64')
build_arch(versions, 'x86_64') build_arch(versions, 'x86_64')
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment