Skip to content

Commit 55dab7e

Browse files
committed
fix a bug in setup.py
1 parent 94a55c3 commit 55dab7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self):
2828
system = platform.system()
2929
if system == 'Linux':
3030
usr_platform = 'x86_64-linux-gnu'
31-
if system == 'Darwin':
31+
elif system == 'Darwin':
3232
usr_platform = 'x86_64-apple-darwin'
3333
else:
3434
raise Exception('This lib is only supporting Linux & macOS for now.')

0 commit comments

Comments
 (0)