no message

This commit is contained in:
2024-10-07 22:04:09 +03:00
parent 7fac84740d
commit 17c0bf7eb3
103 changed files with 560 additions and 491 deletions

View File

@@ -18,13 +18,13 @@ public class LocalInitaliseUser extends ProcessPass<User> {
}
@Override
protected void body() throws Exception {
File workspace = Paths.get(Global.Home, "User").toFile();
File workspace = Paths.get(CommonUtils.Home, "User").toFile();
target.workspace = workspace.getAbsolutePath();
Utils.CheckAndCleanDirectory(workspace);
FileUtils.forceMkdir(target.getLocalProjectsDir());
FileUtils.forceMkdir(target.getLocalModulesDir());
//-
if (!Global.isWindows) {
if (!CommonUtils.isWindows) {
File headerCode = target.getHeaderCodeFile();
//-
File starterCode = target.getStarterCodeFile();