This commit is contained in:
Miguel Freitas 2015-01-24 16:57:03 -02:00
parent ccc131233b
commit 11cd6a47b1

View File

@ -1099,10 +1099,13 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific)
boost::filesystem::path GetHTMLDir()
{
namespace fs = boost::filesystem;
fs::path sysHtmlDir("/usr/share/twister/html");
fs::path path;
if (mapArgs.count("-htmldir")) {
path = fs::system_complete(mapArgs["-htmldir"]);
} else if (fs::is_directory(sysHtmlDir)) {
path = sysHtmlDir;
} else {
path = GetDataDir() / "html";
}