Skip to content

Commit

Permalink
fixed incorrect path for generated schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
mickelus committed May 27, 2020
1 parent 3975cd5 commit c034012
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private void saveModule(DirectoryCache cache, String moduleKey, JsonObject modul
}

private void saveSchema(DirectoryCache cache, String schemaPath, JsonObject schemaData) {
Path outputPath = generator.getOutputFolder().resolve("data/tetra/schema/" + schemaPath + ".json");
Path outputPath = generator.getOutputFolder().resolve("data/tetra/schemas/" + schemaPath + ".json");
try {
IDataProvider.save(gson, cache, schemaData, outputPath);
} catch (IOException e) {
Expand Down

0 comments on commit c034012

Please sign in to comment.