X-Git-Url: http://nitlanguage.org diff --git a/src/nitls.nit b/src/nitls.nit index f78024b..8755bfe 100644 --- a/src/nitls.nit +++ b/src/nitls.nit @@ -129,7 +129,7 @@ end var sum = opt_tree.value.to_i + opt_source.value.to_i + opt_project.value.to_i if sum > 1 then - print "Error: options --tree, --source, and --project are exclusives." + print "Error: options --tree, --source, and --project are exclusive." print tc.tooldescription exit 1 end @@ -144,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