Compare commits

...

3 Commits

1 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,11 @@ public class MetaHelper {
@NotNull
static ReaderStateImpl getReaderState() throws IOException {
List<String> options = Files.readAllLines(Paths.get(RootHolder.ROOT + "../" + ConfigDefinition.CONFIG_PATH));
// add default (empty) board config
options.add("-readfile");
options.add("BOARD_CONFIG_FROM_FILE");
options.add("tunerstudio/empty_board_options.ini");
String[] totalArgs = options.toArray(new String[0]);