From f786be41e745f711a3347edc24a2108b48dae457 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Fri, 13 Dec 2024 03:13:13 +0800 Subject: [PATCH] Update index.py --- plugins/gorse/index.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/gorse/index.py b/plugins/gorse/index.py index 25eda688b..4c76c0a09 100755 --- a/plugins/gorse/index.py +++ b/plugins/gorse/index.py @@ -315,7 +315,8 @@ def installPreInspection(): if not mw.isAppleSystem(): glibc_ver = mw.getGlibcVersion() - return glibc_ver + if float(glibc_ver) < 2.32: + return '当前libc{}过低,需要大于2.31'.fomart(glibc_ver) return 'ok' if __name__ == "__main__":