mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/migration: Support for ~/ in paths
This commit is contained in:
parent
ca74173a82
commit
667fc392e9
2 changed files with 10 additions and 1 deletions
|
@ -22,7 +22,7 @@ module "prosody_files"
|
|||
local function is_dir(path) return lfs.attributes(path, "mode") == "directory"; end
|
||||
local function is_file(path) return lfs.attributes(path, "mode") == "file"; end
|
||||
local function clean_path(path)
|
||||
return path:gsub("\\", "/"):gsub("//+", "/");
|
||||
return path:gsub("\\", "/"):gsub("//+", "/"):gsub("^~", os.getenv("HOME") or "~");
|
||||
end
|
||||
local encode, decode; do
|
||||
local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end });
|
||||
|
|
|
@ -3,6 +3,15 @@
|
|||
CFG_SOURCEDIR=os.getenv("PROSODY_SRCDIR");
|
||||
CFG_CONFIGDIR=os.getenv("PROSODY_CFGDIR");
|
||||
|
||||
-- Substitute ~ with path to home directory in paths
|
||||
if CFG_CONFIGDIR then
|
||||
CFG_CONFIGDIR = CFG_CONFIGDIR:gsub("^~", os.getenv("HOME"));
|
||||
end
|
||||
|
||||
if CFG_SOURCEDIR then
|
||||
CFG_SOURCEDIR = CFG_SOURCEDIR:gsub("^~", os.getenv("HOME"));
|
||||
end
|
||||
|
||||
local default_config = (CFG_CONFIGDIR or ".").."/migrator.cfg.lua";
|
||||
|
||||
-- Command-line parsing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue