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
When loading the configuration files, the configuration server resolves all slashes to forward slashes due to the fact that the used JGit library does require them.
Unfortuently, this functioanlity is broken: path.toString().replace("\\\\", "/"); This leads to the problem, that only double back-slashes are replaced using a single forward-slash.
The text was updated successfully, but these errors were encountered:
When loading the configuration files, the configuration server resolves all slashes to forward slashes due to the fact that the used JGit library does require them.
Unfortuently, this functioanlity is broken:
path.toString().replace("\\\\", "/");
This leads to the problem, that only double back-slashes are replaced using a single forward-slash.The text was updated successfully, but these errors were encountered: