X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Flibrary%2FlibraryClean.ml;h=a544991e85b109e3df0f74f68b27efaf04c612e5;hb=7d748bd1d68d5e47413b411cd8c82ccb5307b0e9;hp=2ac65c5c8b9d2f3435a17fdf10a99a82415d6353;hpb=d90d73349df641ea2d18b4c2ff4fe9d970861778;p=helm.git diff --git a/components/library/libraryClean.ml b/components/library/libraryClean.ml index 2ac65c5c8..a544991e8 100644 --- a/components/library/libraryClean.ml +++ b/components/library/libraryClean.ml @@ -212,18 +212,20 @@ let clean_baseuris ?(verbose=true) buris = List.iter (fun baseuri -> try - HExtlib.safe_remove - (LibraryMisc.obj_file_of_baseuri - ~must_exist:false ~writable:true ~baseuri); + let obj_file = + LibraryMisc.obj_file_of_baseuri ~must_exist:false ~writable:true ~baseuri + in + HExtlib.safe_remove obj_file ; HExtlib.safe_remove (LibraryMisc.metadata_file_of_baseuri - ~must_exist:false ~writable:true ~baseuri); + ~must_exist:false ~writable:true ~baseuri) ; HExtlib.safe_remove (LibraryMisc.lexicon_file_of_baseuri - ~must_exist:false ~writable:true ~baseuri) + ~must_exist:false ~writable:true ~baseuri) ; + HExtlib.rmdir_descend (Filename.chop_extension obj_file) with Http_getter_types.Key_not_found _ -> ()) (HExtlib.list_uniq (List.fast_sort Pervasives.compare - (List.map (UriManager.buri_of_uri) l))); + (List.map (UriManager.buri_of_uri) l @ buris))); List.iter (let last_baseuri = ref "" in fun uri ->