]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
don't check native products
authorcrouzet <nicolas.crouzet@cea.fr>
Thu, 9 Jan 2020 09:34:00 +0000 (10:34 +0100)
committercrouzet <nicolas.crouzet@cea.fr>
Thu, 9 Jan 2020 09:34:00 +0000 (10:34 +0100)
src/product.py

index ab94a6391553025add6e2a0f4056e1071dc51917..fe194f77950a1f781b2a002ffff80de6623937d0 100644 (file)
@@ -829,7 +829,8 @@ def check_installation(config, product_info):
     :return: True if it is well installed
     :rtype: boolean
     """
-    if not product_compiles(product_info):
+    # don't check native products, or products that are not compiled
+    if (not product_compiles(product_info)) or product_is_native(product_info):
         return True
 
     install_dir = product_info.install_dir