home · contact · privacy
Server/py: Integrate libplomrogue building into current main building.
[plomrogue] / plomrogue-server.py
index 5af05f7949e2ca18c16bcb3359d0f73d67fc6e10..56c0044f15603a35b695c74ea7e80f78c379be55 100755 (executable)
@@ -26,7 +26,8 @@ def prep_library():
     """Prepare ctypes library at ./libplomrogue.so"""
     libpath = ("./libplomrogue.so")
     if not os.access(libpath, os.F_OK):
-        raise SystemExit("No library " + libpath + ", run ./compile.sh first?")
+        raise SystemExit("No library " + libpath +
+                         ", run ./compile-server.sh first?")
     libpr = ctypes.cdll.LoadLibrary(libpath)
     libpr.seed_rrand.argtypes = [ctypes.c_uint8, ctypes.c_uint32]
     libpr.seed_rrand.restype = ctypes.c_uint32