We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae34ad commit 2f6b026Copy full SHA for 2f6b026
src/main/java/org/entityc/compiler/cmdline/command/CLSetup.java
@@ -92,13 +92,14 @@ public void run(String[] args) {
92
directoryName = args[1];
93
}
94
EntityCompiler.ensureDirectory(directoryName);
95
+ EntityCompiler.SetDefineValue("SetupDirectoryName", directoryName);
96
97
ProjectManager.getInstance().setProjectBaseDirPath(directoryName);
98
ProjectManager.getInstance().start(false);
99
100
configureSetupRepo(setupUri);
101
- String configurationName = "Setup";
102
+ final String configurationName = "Setup";
103
104
ArrayList<String> sourceFilenames = new ArrayList<>();
105
sourceFilenames.add(repositoryFile.getFilepath());
0 commit comments