Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
--[[
Return list of file names in <.start_dir>.
]]
local get_cmd_listfiles = request('!.mechs.cmdline.get_cmd_listfiles')
local get_program_output_lines = request('!.system.get_program_output_lines')
return
function(self)
local cmd_get_files = get_cmd_listfiles(self.start_dir)
local result = get_program_output_lines(cmd_get_files)
self:simplify_file_names(result)
return result
end