home · contact · privacy
Update/improve tests for lack of compiled files to run redo for.
[plomrogue] / roguelike-server
index ef3fdbcc5a8491fe71e8f8418f775132b5b1fcbe..3672296a1fd710a115638e57b418338baef16423 100755 (executable)
@@ -33,8 +33,7 @@ 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-server.sh first?")
+        raise SystemExit("No library " + libpath + ", run ./redo first?")
     libpr = ctypes.cdll.LoadLibrary(libpath)
     libpr.seed_rrand.restype = ctypes.c_uint32
     return libpr