Commit f7cad77b by Calen Pennington

Ignore errors when deleting the old xmodule compiled assets directory

parent 729daf5c
...@@ -122,7 +122,7 @@ def main(): ...@@ -122,7 +122,7 @@ def main():
args = docopt(main.__doc__) args = docopt(main.__doc__)
root = path(args['<output_root>']) root = path(args['<output_root>'])
root.rmtree() root.rmtree(ignore_errors=True)
write_descriptor_js(root / 'descriptors/js') write_descriptor_js(root / 'descriptors/js')
write_descriptor_styles(root / 'descriptors/css') write_descriptor_styles(root / 'descriptors/css')
write_module_js(root / 'modules/js') write_module_js(root / 'modules/js')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment