loader: build_module_importation invalidates the mmodule on errors
[nit.git] / src / nitls.nit
index f29fdfd..7ffc58c 100644 (file)
@@ -18,7 +18,6 @@
 module nitls
 
 import modelbuilder
-intrude import loader
 import ordered_tree
 import console
 
@@ -145,11 +144,10 @@ var files
 if opt_recursive.value then
        files = new Array[String]
        for d in tc.option_context.rest do
-               var pipe = new IProcess("find", d, "-name", "*.nit")
+               var pipe = new ProcessReader("find", d, "-name", "*.nit")
                while not pipe.eof do
                        var l = pipe.read_line
                        if l == "" then break # last line
-                       l = l.substring(0,l.length-1) # strip last oef
                        files.add l
                end
                pipe.close
@@ -194,8 +192,7 @@ for a in files do
 end
 
 # Load modules to get more informations
-for mp in mb.identified_files.values do
-       if mp == null then continue
+for mp in mb.identified_files do
        if not opt_paths.value or opt_depends.value then
                var mm = mb.load_module(mp.filepath)
                if mm != null and opt_depends.value then