Salome HOME
fix sat compile from detar problem file sat-product.pyconf evaluation
authorChristian Van Wambeke <christian.van-wambeke@cea.fr>
Mon, 17 Dec 2018 13:55:43 +0000 (14:55 +0100)
committerChristian Van Wambeke <christian.van-wambeke@cea.fr>
Mon, 17 Dec 2018 13:55:43 +0000 (14:55 +0100)
src/product.py

index f1fa34be852d349016ef7dd4e63a907164fe7433..9bb1116fb576469e2922c6d587c33fcbc51ff3af 100644 (file)
@@ -480,12 +480,25 @@ def add_compile_config_file(p_info, config):
     with open(aFile, 'w') as f:
       res.__save__(f)
 
-    # this file is for human eye reading
+    # this file is not mandatory, is for human eye reading
     aFile = os.path.join(p_info.install_dir, PRODUCT_FILENAME)
     with open(aFile, 'w') as f:
       # f.write(DBG.getStrConfigDbg(p_info)) # debug mode
-      p_info.__save__(f, evaluated=True) # evaluated expressions mode
-
+      try:
+        with open(aFile, 'w') as f:
+          p_info.__save__(f, evaluated=True) # evaluated expressions mode
+      except:
+        DBG.write("cannot evaluate product info - problem in file %s" % aFile, p_info, True)
+        # write DBG mode, as no problem if evaluation not possible
+        msg = """\
+# Some informations cannot be evaluated.
+# for example:
+# In the context of non VCS archives, information on git server is not available.
+  
+"""
+        with open(aFile, 'w') as f:
+          f.write(msg)
+          f.write(DBG.getStrConfigDbg(p_info))
 
 def check_config_exists(config, prod_dir, prod_info, verbose=False):
     """\