Skip to content

Commit

Permalink
Merge pull request PauperZ#1 from Roderick-Stinson/main
Browse files Browse the repository at this point in the history
[fix] macOS verison
  • Loading branch information
PauperZ authored Aug 25, 2021
2 parents 01b94a0 + 3d61b7a commit 39a04dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssrspeed/utils/platform_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def check_platform():
return "Windows"
elif("Linux" in tmp):
return "Linux"
elif("Darwin" in tmp):
elif("Darwin" in tmp or "mac" in tmp):
return "MacOS"
else:
return "Unknown"

0 comments on commit 39a04dd

Please sign in to comment.