Skip to content

Commit

Permalink
Avoid making paths illegal strings
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jan 24, 2023
1 parent e31fa2e commit dbf5bd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public Map<String, Object> render(Set<DependencyInfo> infos) {
packages.put(key, info.getPackages());

if (info.getPath() != null) {
files.put(key, info.getPath().toString());
// Regularise paths to UNIX format
files.put(key, info.getPath().toString().replace('\\', '/'));
}
});

Expand Down
Binary file modified private/tools/prebuilt/lock_file_converter_deploy.jar
Binary file not shown.

0 comments on commit dbf5bd0

Please sign in to comment.