changing tmp cleanup buildbot command so it's interpreted correctly

This commit is contained in:
Tim Flink 2015-11-04 21:00:57 +00:00
parent b3d4f86978
commit 389305cd97

View file

@ -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