# HG changeset patch # User Waqas Hussain # Date 1228316228 -18000 # Node ID c0f15538f358e86036591bfb352396c576ae720d # Parent fc3df507afa28f13ba2a55cd84aff9d48f2b0fe0 config and data directories taken from path, and quoted to allow spaces in path diff -r fc3df507afa2 -r c0f15538f358 prosody --- a/prosody Wed Dec 03 19:56:05 2008 +0500 +++ b/prosody Wed Dec 03 19:57:08 2008 +0500 @@ -3,9 +3,9 @@ -- Config here -- CFG_SOURCEDIR=nil; -CFG_CONFIGDIR=nil; +CFG_CONFIGDIR=os.getenv("PROSODY_CFGDIR"); CFG_PLUGINDIR=nil; -CFG_DATADIR=nil; +CFG_DATADIR=os.getenv("PROSODY_DATADIR"); -- -- -- -- -- -- @@ -54,7 +54,7 @@ function mkdir(path) path = path:gsub("/", path_separator); --print("mkdir",path); - local x = io.popen("mkdir "..path.." 2>&1"):read("*a"); + local x = io.popen("mkdir \""..path.."\" 2>&1"):read("*a"); end function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end function mkdirs(host)