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

Merge branch...

Merge branch '113-nemo-compilation-fails-when-model-path-contains-a-directory-name-with-digits-only' into 'main'

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

Closes #113

See merge request nemo/nemo!184
parents 9a1548e3 f8d89421
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