Skip to content

Commit 745f221

Browse files
committed
Enable experimental Mac OSX support
1 parent dc01a22 commit 745f221

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backdrop.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1714,11 +1714,12 @@ def check_for_updates_in_background():
17141714
if __name__ == '__main__':
17151715
PLATFORM_WINDOWS = 'Windows'
17161716
PLATFORM_LINUX = 'Linux'
1717+
PLATFORM_MAC = 'Darwin'
17171718

17181719
SYS_PLATFORM = platform.system()
17191720

17201721
# Platform sanity check
1721-
if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX]:
1722+
if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX, PLATFORM_MAC]:
17221723
logging.error('This operating system is not supported')
17231724
exit()
17241725

0 commit comments

Comments
 (0)