From 57377a79b5b72d56cd23c6547062e40b96fa38b9 Mon Sep 17 00:00:00 2001 From: The Coriolis Project Date: Wed, 19 May 2010 14:47:48 +0000 Subject: [PATCH] Adding -f option in rm command for --rm-build (in case build does not exist) --- bootstrap/buildCoriolis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/buildCoriolis.py b/bootstrap/buildCoriolis.py index cdd65bc9..c39a0b47 100755 --- a/bootstrap/buildCoriolis.py +++ b/bootstrap/buildCoriolis.py @@ -215,7 +215,7 @@ class ProjectBuilder: if self._rmBuild: print "Removing tool build directory: \"%s\"." % toolBuildDir - command = [ "/bin/rm", "-r", toolBuildDir ] + command = [ "/bin/rm", "-rf", toolBuildDir ] self._execute ( command, "Removing tool build directory" ) if not os.path.isdir(toolBuildDir):