Skip to content
Snippets Groups Projects
Commit f8d89421 authored by Guillaume Samson's avatar Guillaume Samson :snowman2:
Browse files

Resolve "Nemo compilation fails when model path contains a directory name with digits only"

parent 9a1548e3
No related branches found
No related tags found
No related merge requests found
...@@ -520,7 +520,7 @@ sub catfile { ...@@ -520,7 +520,7 @@ sub catfile {
my $path = shift @names; my $path = shift @names;
for my $name (@names) { for my $name (@names) {
$path .= '/' . $name if $name; $path .= '/' . $name if (length $name);
} }
return $path; return $path;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment