Commit d3c5191f authored by Jan Kiene's avatar Jan Kiene
Browse files

fix moving

parent 0a2a1373
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ def get_artifacts_for_jobs_and_return_num_failed(
                        src = tmp_dir.joinpath(artifact).absolute()
                        dst = PUBLIC_FOLDER.joinpath(artifact)
                        if project_id == PROJECT_ID_BASOP_REPO:
                            dst = artifact.stem + f"-id_{job_id}" + artifact.suffix
                            dst = PUBLIC_FOLDER.joinpath(artifact.stem + f"-id_{job_id}" + artifact.suffix)
                        print(f"{src} -> {dst}")
                        shutil.move(src, dst)