From a34298efbd2ba6671356b22bf18cae0fa3ab446f Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Fri, 8 Aug 2014 02:07:23 +0200 Subject: [PATCH] Just try to delete files in the folder Signed-off-by: Ian Bell --- dev/buildbot/master/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/buildbot/master/master.cfg b/dev/buildbot/master/master.cfg index 1a8350ee..c013f7b1 100644 --- a/dev/buildbot/master/master.cfg +++ b/dev/buildbot/master/master.cfg @@ -111,7 +111,7 @@ def python_slave(key, platform, cmake_args = [], cmake_env = {}, build_args = [] # property set? If so, clobber the checkout folders. if platform.startswith('win'): # del /q destination\* && for /d %x in (destination\*) do @rd /s /q %x - cmd = ['cmd', '/c', WithProperties('if %(fullclean:-no)s == no (del /q destination\* && for /d %x in (destination\*) do @rd /s /q %x) ')] + cmd = ['cmd', '/c', WithProperties('if %(fullclean:-no)s == no (del /q *) ')] else: cmd = ['bash', '-c', WithProperties('if [ %(fullclean:-no)s == yes ]; then echo pwd; rm -rfv *; echo fully cleaned; fi'),