buildmaster: fix creating artifacts dir
This commit is contained in:
parent
3109826a8e
commit
017d95c14c
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ def today(props):
|
||||||
artifactsdir = Interpolate('{{ public_artifacts_dir }}/%(prop:uuid)s/%(kw:today)s', today=today)
|
artifactsdir = Interpolate('{{ public_artifacts_dir }}/%(prop:uuid)s/%(kw:today)s', today=today)
|
||||||
|
|
||||||
# create artifacts dir on master
|
# create artifacts dir on master
|
||||||
factory.addStep(MasterShellCommand(command=["mkdir", '-m', '0755', artifactsdir],
|
factory.addStep(MasterShellCommand(command=["mkdir", '-p', '-m', '0755', artifactsdir],
|
||||||
descriptionDone=['Create artifacs dir']))
|
descriptionDone=['Create artifacs dir']))
|
||||||
|
|
||||||
# copy artifacts to master
|
# copy artifacts to master
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue