Skip to content

Commit

Permalink
Canonicalize cppwinrt input paths (#449)
Browse files Browse the repository at this point in the history
Canonicalizes input paths we pass to cppwinrt to avoid failures to open
files.

Followup to #448
  • Loading branch information
cbracken committed May 7, 2021
1 parent b1bc089 commit 0923e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/win/generate_winrt_headers.py
Expand Up @@ -44,7 +44,7 @@ def get_inputs(sdk_path, sdk_version):
name = contract.getAttribute('name')
version = contract.getAttribute('version')
winmd_path = os.path.join(reference_dir, name, version, '%s.winmd' % name)
inputs.append(winmd_path)
inputs.append(os.path.realpath(winmd_path))
return inputs


Expand Down

0 comments on commit 0923e17

Please sign in to comment.