From c337018294d7baddbc595d4a9ba52a52c320a3a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 7 Jun 2017 14:51:44 +0200 Subject: [PATCH] pkgset: Use descriptive name for log file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When repos are used as pkgset source, the logs are stored in a file that should have a better name than `fooo..log`. Signed-off-by: Lubomír Sedlář --- pungi/phases/pkgset/sources/source_repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/pkgset/sources/source_repos.py b/pungi/phases/pkgset/sources/source_repos.py index 35748c47..55a58f54 100644 --- a/pungi/phases/pkgset/sources/source_repos.py +++ b/pungi/phases/pkgset/sources/source_repos.py @@ -68,7 +68,7 @@ def get_pkgset_from_repos(compose): pungi = PungiWrapper() pungi_conf = compose.paths.work.pungi_conf(arch=arch) - pungi_log = compose.paths.log.log_file(arch, "fooo") + pungi_log = compose.paths.log.log_file(arch, "pkgset_source") pungi_dir = compose.paths.work.pungi_download_dir(arch) cmd = pungi.get_pungi_cmd(pungi_conf, destdir=pungi_dir, name="FOO", selfhosting=True, fulltree=True, multilib_methods=["all"], nodownload=False, full_archlist=True, arch=arch, cache_dir=compose.paths.work.pungi_cache_dir(arch=arch)) cmd.append("--force")