]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
check version file in ABSOLUTE_APPLI_PATH
authorDUC ANH HOANG <duc-anh-externe.hoang@edf.fr>
Wed, 31 May 2023 13:52:18 +0000 (15:52 +0200)
committerDUC ANH HOANG <duc-anh-externe.hoang@edf.fr>
Wed, 31 May 2023 13:57:53 +0000 (15:57 +0200)
bin/launchConfigureParser.py

index a0870c469fce4a2e36b51d7ad284acc1e008491a..25348d784d6af7243c0825501c99d805e7994998 100644 (file)
@@ -113,6 +113,10 @@ def version():
             filename = version_file
         root_dir = os.environ.get( 'GUI_ROOT_DIR', '' )    # GUI_ROOT_DIR "" if not found
         version_file = os.path.join(root_dir, 'bin', 'salome', 'VERSION')
+        if root_dir and os.path.exists( version_file ):
+            filename = version_file
+        root_dir = os.environ.get( 'ABSOLUTE_APPLI_PATH', '' )    # ABSOLUTE_APPLI_PATH "" if not found
+        version_file = os.path.join(root_dir, 'bin', 'salome', 'VERSION')
         if root_dir and os.path.exists( version_file ):
             filename = version_file
         if filename: