aedi: simplify zip installation

This commit is contained in:
alexey.lysiuk 2021-07-04 12:40:20 +03:00
parent 42e719e578
commit 4bc8050cf6

View file

@ -177,6 +177,4 @@ class ZipTarget(MakeTarget):
subprocess.run(args, check=True, cwd=state.build_path)
def post_build(self, state: BuildState):
bin_path = state.install_path + 'bin'
os.makedirs(bin_path, exist_ok=True)
shutil.copy(state.build_path + 'zip', bin_path)
self.copy_to_bin(state)