Closed p1us2er0 closed 2 years ago
Thank you for your adding comment. I will check programming mistakes visually first. And later I write test of CraftDiff and others.
I found the new pattern:
DfLanguageDependencyJava:
public String getGenerateOutputDirectory() {
return "../" + getMainProgramDirectory();
}
public String getResourceOutputDirectory() {
return "../resources";
}
We needs to come up with some ideas...
How about the following specification?
workDir: null (as normal process)
DfEngineWorkDir.toPath("./sea/land"); // ./sea/land (no change)
DfEngineWorkDir.toPath("../sea/land"); // ../sea/land (no change)
workDir: /maihama
DfEngineWorkDir.toPath("./sea/land"); // /maihama/./sea/land (or /maihama/sea/land)
DfEngineWorkDir.toPath("../sea/land"); // /maihama/../sea/land (or /sea/land *difficult...)
How about the following specification?
I tried.
managed by the following issue: https://github.com/dbflute/dbflute-core/issues/150
Thanks, I will confirm modification later