fix fess.log.path on windows

This commit is contained in:
Kaoru FUZITA 2016-01-25 22:24:59 +09:00
parent f6e26de226
commit 21fff04ec8

View file

@ -82,7 +82,7 @@ public class FessBoot extends TomcatBoot {
if (fessLogPath == null) {
fessLogPath = "../../logs";
}
op.replace("fess.log.path", fessLogPath);
op.replace("fess.log.path", fessLogPath.replace("\\", "/"));
}) // uses jdk14logger
.asDevelopment(isNoneEnv()).bootAwait();
}