ropes: Fix the behavior of `RopeBuffer.clear` when used with `to_s`.
[nit.git] / src / nitls.nit
index 0b8add6..cde9656 100644 (file)
@@ -31,7 +31,7 @@ class ProjTree
                        if opt_paths then
                                return o.filepath.as(not null)
                        else
-                               return "{o.name} ({o.filepath})"
+                               return "{o.name} ({o.filepath.to_s})"
                        end
                else if o isa ModulePath then
                        if opt_paths then
@@ -73,6 +73,8 @@ if sum > 1 then
        exit 1
 end
 
+tc.keep_going = opt_keep.value
+
 var model = new Model
 var mb = new ModelBuilder(model, tc)
 
@@ -106,7 +108,7 @@ else
        for a in files do
                var mp = mb.identify_file(a)
                if mp == null then
-                       if not opt_keep.value then tc.check_errors
+                       tc.check_errors
                end
        end
 end