From a459b00a545a0abeb5dde8b655b14f3d5b1f4dfb Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Tue, 29 Aug 2023 15:15:06 +0200 Subject: [PATCH] fix path --- builder/kojid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/kojid b/builder/kojid index 7334606f..b2a1d111 100755 --- a/builder/kojid +++ b/builder/kojid @@ -5570,7 +5570,7 @@ class NewRepoTask(BaseTaskHandler): shutil.copytree(src_repodata, dst_repodata) repo_json = koji.load_json(f'{src_repo_path}/repo.json') repo_json['cloned_from_repo_id'] = src_repo_id - koji.dump_json(f'{dst_repodata}/repo.json', repo_json, indent=2) + koji.dump_json(f'{self.workdir}/{arch}/repo.json', repo_json, indent=2) uploadpath = self.getUploadDir() files = [] for f in os.listdir(dst_repodata):