Skip to content

Commit

Permalink
Merge pull request #398 from akselsm/fix-yaml-parse-unix
Browse files Browse the repository at this point in the history
Change include paths from YAML to unix paths before parsing.
  • Loading branch information
0xc0170 authored Jun 16, 2016
2 parents 4de699b + d5a984c commit fb9b69b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions project_generator/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ def _process_include_files(self, files, use_group_name = 'default'):
self.project['export']['include_files'][use_group_name] = []

for include_file in use_includes:
include_file = include_file.replace('\\', '/')
# include might be set to None - empty yaml list
if include_file:
if os.path.isdir(include_file):
Expand Down

0 comments on commit fb9b69b

Please sign in to comment.