aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/paths.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/paths.lua b/util/paths.lua
index 3e5744df..89f4cad9 100644
--- a/util/paths.lua
+++ b/util/paths.lua
@@ -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;