Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.8.1-incubator
-
None
Description
When uploading artifacts to the ACE server running on a windows OS, URLs added to the repository files contain windows file paths including the \ instead of /.
Replacing line 116 in class BundleFileStore (trunk)
String filePath = storeLocation.getAbsolutePath().substring(getWorkingDir().getAbsolutePath().length());
with:
String filePath = storeLocation.toURI().toString().substring(getWorkingDir().toURI().toString().length());
solves this problem.