You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[gh-11363] Fix variable substitution in concat_lines for Linux compatibility
The previous implementation used AWK variables for substitution which didn't
work correctly on Linux systems. This commit separates the concerns:
1. Use sed for variable substitution ( and
$MAVEN_PROJECTBASEDIR) - this is more portable and reliable across
different Unix-like systems
2. Use awk only for escaping unquoted pipe symbols
This ensures that JVM config files work correctly on both macOS and Linux,
with proper variable substitution and pipe symbol handling.
0 commit comments