Cleaned up string quotes

This commit is contained in:
Bruce Hill 2018-05-24 15:36:02 -07:00
parent ba76a35e84
commit 5758626bf7
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ all_files = function(path)
return iterate_single, path
end
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
return io.popen("find -L \"" .. path .. "\" -type f -name \"*.nom\""):lines()
return io.popen('find -L "' .. path .. '" -type f -name "*.nom"'):lines()
end
local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
line <- {} (!%nl .)*

View File

@ -77,7 +77,7 @@ all_files = (path)->
return iterate_single, path
-- TODO: improve sanitization
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
return io.popen("find -L \""..path.."\" -type f -name \"*.nom\"")\lines!
return io.popen('find -L "'..path..'" -type f -name "*.nom"')\lines!
line_counter = re.compile([[
lines <- {| line (%nl line)* |}