Skip to content

Commit 496157f

Browse files
committed
only print a warning when trying to run on non darwin systems
1 parent 20ed2fe commit 496157f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232

3333
if not 'darwin' in sys.platform:
3434
import os
35-
sys.stderr.write("This package can only be installed and run on OS X!" + os.linesep)
36-
sys.exit(1)
35+
sys.stderr.write("Warning: The package 'launchd' can only be installed and run on OS X!" + os.linesep)
3736

3837
setup(name="launchd",
3938
packages=["launchd", "launchd.tests"],

0 commit comments

Comments
 (0)