Do not compute checksums on macOS

This commit is contained in:
grossmj
2023-11-07 14:30:39 +10:00
parent 8eb5f10971
commit 1d86e322e9
2 changed files with 6 additions and 5 deletions

View File

@ -77,13 +77,11 @@ def main():
Entry point for GNS3 server
"""
if hasattr(sys, "frozen"):
multiprocessing.freeze_support()
multiprocessing.set_start_method("spawn")
if not sys.platform.startswith("win"):
if "--daemon" in sys.argv:
daemonize()
else:
multiprocessing.freeze_support()
from gns3server.run import run
run()