Skip to content

Commit 88e9f39

Browse files
authored
Improve path processing (#330)
* Refs #20755: Normalize paths Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com> * Refs #20755: Update submodule idl-parser Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com> --------- Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com>
1 parent fc8bf3b commit 88e9f39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/eprosima/fastdds/fastddsgen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public fastddsgen(
164164

165165
if (!arg.startsWith("-"))
166166
{
167-
m_idlFiles.add(arg);
167+
m_idlFiles.add(Paths.get(arg).normalize().toString());
168168
}
169169
else if (arg.equals("-example"))
170170
{

0 commit comments

Comments
 (0)