Skip to content

Commit

Permalink
Rewrite Info.plist as well, in case other macOS tools care.
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarithemad committed May 22, 2024
1 parent 889248f commit 228fed0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
# This implicitly uses "universal" newlines mode.
xml_content = ENTITLEMENTS_PATH.read_text()
ENTITLEMENTS_PATH.open('w', newline='\n').write(xml_content)

INFO_PATH = BIN_PATH.parent / 'Info.plist'
info_content = INFO_PATH.read_text()
INFO_PATH.open('w', newline='\n').write(info_content)

0 comments on commit 228fed0

Please sign in to comment.