Skip to content

Commit

Permalink
Handle Win-style include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
moyner committed Mar 4, 2024
1 parent c07085c commit f621d6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/InputParser/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ function clean_include_path(basedir, include_file_name)
include_file_name = m.match[2:end-1]
end
include_file_name = strip(include_file_name)
include_file_name = replace(include_file_name, '\\' => '/')
if startswith(include_file_name, "./")
include_file_name = include_file_name[3:end]
end
Expand Down

0 comments on commit f621d6a

Please sign in to comment.