Remove the build directory beforing rebuilding in cibuild.

This commit is contained in:
Cheng Zhao 2013-11-26 09:39:24 +08:00
parent 858f21a69c
commit 1fc9ef33db

View file

@ -4,11 +4,15 @@ import os
import subprocess
import sys
from lib.util import rm_rf
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def main():
rm_rf(os.path.join(SOURCE_ROOT, 'out'))
run_script('bootstrap.py')
run_script('cpplint.py')
run_script('pylint.py')