Skip to content

Commit

Permalink
Enable experimental Mac OSX support
Browse files Browse the repository at this point in the history
  • Loading branch information
TechGeek01 committed Jul 18, 2023
1 parent dc01a22 commit 745f221
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backdrop.py
Original file line number Diff line number Diff line change
Expand Up @@ -1714,11 +1714,12 @@ def check_for_updates_in_background():
if __name__ == '__main__':
PLATFORM_WINDOWS = 'Windows'
PLATFORM_LINUX = 'Linux'
PLATFORM_MAC = 'Darwin'

SYS_PLATFORM = platform.system()

# Platform sanity check
if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX]:
if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX, PLATFORM_MAC]:
logging.error('This operating system is not supported')
exit()

Expand Down

0 comments on commit 745f221

Please sign in to comment.