changing tmp cleanup buildbot command so it's interpreted correctly
This commit is contained in:
parent
b3d4f86978
commit
389305cd97
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ factory.addStep(ShellCommand(command=["rm", "-f", "/var/log/taskotron/taskotron.
|
|||
|
||||
{% if deployment_type == 'dev' %}
|
||||
# clean out /var/tmp/taskotron (see T253)
|
||||
factory.addStep(ShellCommand(command=["rm", "-rf", Interpolate("/var/tmp/taskotron/%(prop:slavename)s/*")], name="rm_tmp", descriptionDone=['Clean tmp']))
|
||||
factory.addStep(ShellCommand(command=Interpolate("rm -rf /var/tmp/taskotron/%(prop:slavename)s/*"), name="rm_tmp", descriptionDone=['Clean tmp']))
|
||||
{% endif %}
|
||||
|
||||
# check out the source
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue