summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/local/server-tools/rz-user-tool.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/local/server-tools/rz-user-tool.py b/src/local/server-tools/rz-user-tool.py
index 24dc3c20..55c6bdad 100755
--- a/src/local/server-tools/rz-user-tool.py
+++ b/src/local/server-tools/rz-user-tool.py
@@ -24,8 +24,13 @@ import re
import sys
from getpass import getpass
-server_path = os.path.realpath(os.path.join(os.path.dirname(sys.modules[__name__].__file__), '..', '..', 'server'))
-if not os.path.exists(server_path):
+server_path = None
+for parts in [('..', '..', 'server'), ('..', '..', 'rhizi-server')]:
+ candidate = os.path.realpath(os.path.join(os.path.dirname(sys.modules[__name__].__file__), *parts))
+ if os.path.exists(candidate):
+ server_path = candidate
+ break
+if server_path is None:
print("error: path not setup correctly")
raise SystemExit
sys.path.append(server_path)