Browse Source

Ignore Windows errors in clean.py

Cheng Zhao 9 years ago
parent
commit
e95ee4775e
1 changed files with 8 additions and 5 deletions
  1. 8 5
      script/clean.py

+ 8 - 5
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__':