From e95ee4775e2063602b05927e2f8ca28d7fc4b8ba Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 3 Jul 2015 13:59:02 +0800 Subject: [PATCH] Ignore Windows errors in clean.py --- script/clean.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/script/clean.py b/script/clean.py index cd72230a3715..094f70df7a2e 100755 --- a/script/clean.py +++ b/script/clean.py @@ -11,11 +11,14 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) def main(): os.chdir(SOURCE_ROOT) - rm_rf('node_modules') - rm_rf('dist') - rm_rf('out') - rm_rf('spec/node_modules') - rm_rf('vendor/brightray/vendor/download/libchromiumcontent') + try: + rm_rf('node_modules') + rm_rf('dist') + rm_rf('out') + rm_rf('spec/node_modules') + rm_rf('vendor/brightray/vendor/download/libchromiumcontent') + except WindowsError: # pylint: disable=E0602 + pass if __name__ == '__main__':