From 50c29fad0dcaeb161a09524773e997cd0d9184e4 Mon Sep 17 00:00:00 2001 From: Martin Krizek Date: Mon, 9 Mar 2015 09:30:43 +0000 Subject: [PATCH] buildmaster: fix creating artifacts dir, again --- .../buildmaster-configure/templates/taskotron.master.cfg.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 index e82144bdce..51c1b1fb08 100644 --- a/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 @@ -181,7 +181,7 @@ from buildbot.process.properties import renderer def today(props): return datetime.datetime.now().strftime("%Y%m%d") -artifactsdir = Interpolate('{{ public_artifacts_dir }}/%(prop:uuid)s/%(kw:today)s', today=today) +artifactsdir = Interpolate('{{ public_artifacts_dir }}/%(kw:today)s/%(prop:uuid)s', today=today) # create artifacts dir on master factory.addStep(MasterShellCommand(command=["mkdir", '-p', '-m', '0755', artifactsdir],