Skip to content

Commit

Permalink
🐛fix: internal infoString uses equals char, not colon
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Nov 30, 2024
1 parent e02821c commit 887af30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public StdlibFolderBuilder(String name) throws IOException {
this.texts = new DataOutputStream(new FileOutputStream(textFile));
texts.writeUTF(infoString);

if (infoString.contains("link:")) {
if (infoString.contains("link=")) {
texts.writeUTF(SEPARATOR);
texts.close();
} else {
Expand Down

0 comments on commit 887af30

Please sign in to comment.