mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.paths: Add function for joining path segments
This commit is contained in:
parent
597c04000e
commit
090d1d01f4
1 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
local t_concat = table.concat;
|
||||
|
||||
local path_sep = package.config:sub(1,1);
|
||||
|
||||
local path_util = {}
|
||||
|
@ -35,4 +37,8 @@ function path_util.glob_to_pattern(glob)
|
|||
end).."$";
|
||||
end
|
||||
|
||||
function path_util.join(...)
|
||||
return t_concat({...}, path_sep);
|
||||
end
|
||||
|
||||
return path_util;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue