Skip to content

Commit

Permalink
GameInfoReader: Fix for CI/CD mangling lines
Browse files Browse the repository at this point in the history
Only occurs when making CI/CD builds, not on local work folder or local dev builds.
  • Loading branch information
Lemon-King committed Jun 22, 2024
1 parent 62d7b8e commit 8c72718
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions resources/assets/zscript/lib/gameinforeader.zs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ class GameInfoReader {
line.Substitute(" , ", ",");
line.Substitute(", ", ",");
line.Substitute(" ,", ",");
line.Substitute("\r", ""); // only shows in ci/cd

return line;
}
Expand Down

0 comments on commit 8c72718

Please sign in to comment.