Skip to content

Commit

Permalink
generated files must be in lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Nov 27, 2024
1 parent 82656fe commit 43325f9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public StdlibFolderBuilder(String name) throws IOException {
System.err.println("in " + dir);
final File rawFolder = rawFolder();

final File spritesFile = new File(rawFolder, name + "-def.repx");
final File textFile = new File(rawFolder, name + "-abc.repx");
final File colorImagesFile = new File(rawFolder, name + "-ghi.repx");
final File spritesFile = new File(rawFolder, name.toLowerCase() + "-def.repx");
final File textFile = new File(rawFolder, name.toLowerCase() + "-abc.repx");
final File colorImagesFile = new File(rawFolder, name.toLowerCase() + "-ghi.repx");

final String infoString = readInfo(new File(dir, "README.md"));
System.err.println("infoString:" + infoString.replace('\n', ' '));
Expand Down

0 comments on commit 43325f9

Please sign in to comment.