Skip to content

Commit

Permalink
fix is_not_debug cut and paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Monson committed Dec 18, 2018
1 parent f34d86b commit bcd39c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/winiot/sync_win_iot.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ def include_in_tools(p):
FULL_LAYOUT_DEBUG = [
('/', '$source', 'python_d.exe', is_debug),
('/', '$source', 'pythonw_d.exe', is_debug),
('Lib/', '$source', 'venvlauncher_d.exe', is_not_debug),
('Lib/', '$source', 'venvwlauncher_d.exe', is_not_debug),
('Lib/', '$source', 'venvlauncher_d.exe', is_debug),
('Lib/', '$source', 'venvwlauncher_d.exe', is_debug),
('/', '$source', 'python{}_d.dll'.format(sys.version_info.major), is_debug),
('/', '$source', '{}_d.dll'.format(BASE_NAME), is_debug),
('include/', 'include', '*.h', None),
Expand Down

0 comments on commit bcd39c1

Please sign in to comment.