From: Jean Privat Date: Tue, 18 Aug 2015 12:20:08 +0000 (-0400) Subject: loader: identify_file use the absence of '/' for special behavior X-Git-Tag: v0.7.8~81^2~5 X-Git-Url: http://nitlanguage.org loader: identify_file use the absence of '/' for special behavior Now `./standard` and `standard` have a different meaning Signed-off-by: Jean Privat --- diff --git a/src/loader.nit b/src/loader.nit index 4e0e2e8..e748a39 100644 --- a/src/loader.nit +++ b/src/loader.nit @@ -353,7 +353,7 @@ redef class ModelBuilder # special case for not a nit file if path.file_extension != "nit" then # search dirless files in known -I paths - if path.dirname == "." then + if not path.chars.has('/') then var res = search_module_in_paths(null, path, self.paths) if res != null then return res end