Skip to content

Commit

Permalink
Fix setup_pyi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dipu-bd committed Jan 28, 2023
1 parent 0de36a8 commit 032830d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup_pyi.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def gather_data_files():

command = []
for src, dst in file_map.items():
command += ["--add-data", src.as_posix() + os.pathsep + dst]
if src.exists():
command += ["--add-data", src.as_posix() + os.pathsep + dst]

return command

Expand Down

0 comments on commit 032830d

Please sign in to comment.