24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-18 22:15:20 +02:00

Merge pull request #350 from flygoast/master

Used current working home as base directory to config relative path.
This commit is contained in:
Evgeny Khramtsov 2014-11-25 14:24:37 +03:00
commit 00dfcc1e10

View File

@ -210,9 +210,8 @@ get_absolute_path(File) ->
absolute -> absolute ->
File; File;
relative -> relative ->
Config_path = get_ejabberd_config_path(), {ok, Dir} = file:get_cwd(),
Config_dir = filename:dirname(Config_path), filename:absname_join(Dir, File)
filename:absname_join(Config_dir, File)
end. end.