https://bz.apache.org/bugzilla/show_bug.cgi?id=64624
--- Comment #7 from nonealexq <[email protected]> --- In fact, the problem was in the generation and you can fix it - replace \\ with \. Hastily drew a solution in the form of a bash script: #!/bin/sh _dashPath=$(find -name "dashboard.js") _template='\\\\'; _raplace='\\' _arrFiles=$(echo $_dashPath | tr " " "\n") for x in $_arrFiles do echo "\"$x\"" sed -i -e "s%$_template%$_raplace%g" $x done -- You are receiving this mail because: You are the assignee for the bug.
