From ad342b63b7b6f07f9c8dc44fc09f7d478b7bb1e0 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Jun 2018 16:11:08 -0700 Subject: Simplifications/streamlining the Make process, and cleaning up some of how command line interaction and `use %` work. --- files.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files.lua') diff --git a/files.lua b/files.lua index 9265056..130a880 100644 --- a/files.lua +++ b/files.lua @@ -60,7 +60,7 @@ if ok then end elseif file_type == 'directory' then for subfile in lfs.dir(filename) do - if not (subfile == "." or subfile == "..") then + if not (subfile == "." or subfile == ".." or not subfile:match("%.nom$")) then browse(filename .. "/" .. subfile) end end -- cgit v1.2.3