Skip to content

Commit

Permalink
Fix advanced-streams for Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
JackKaif committed Feb 2, 2024
1 parent 8e5da1c commit 5f9c82e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// BEGIN
class App {
public static String getForwardedVariables(String file) {
var fileStringsList = Arrays.asList(file.split("\\r\n"));
var fileStringsList = Arrays.asList(file.split("\\n"));
return fileStringsList.stream()
.filter(string -> string.startsWith("environment"))
.map(string -> {
Expand Down

0 comments on commit 5f9c82e

Please sign in to comment.