Salome HOME
sat #20490 : bug faux positif de sat prepare si le tag n'existe pas, ajout d'infos...
authorcrouzet <nicolas.crouzet@cea.fr>
Mon, 14 Dec 2020 15:25:34 +0000 (16:25 +0100)
committercrouzet <nicolas.crouzet@cea.fr>
Mon, 14 Dec 2020 15:25:34 +0000 (16:25 +0100)
commands/config.py
src/system.py

index abba1a8a14c610d8745373080d82a24f28e86711..6ef3dbff7dce1326f5c8b457c376dad81a44d3f3 100644 (file)
@@ -743,6 +743,12 @@ def show_product_info(config, name, logger):
             logger.write("  " + 
                          src.printcolors.printcWarning(_("no install dir")) + 
                          "\n", 2)
+
+        src.printcolors.print_value(logger, "debug ", pinfo.debug, 2)
+        src.printcolors.print_value(logger, "verbose ", pinfo.verbose, 2)
+        src.printcolors.print_value(logger, "hpc ", pinfo.hpc, 2)
+        src.printcolors.print_value(logger, "dev ", pinfo.dev, 2)
+
     else:
         logger.write("\n", 2)
         msg = _("This product does not compile")
index 446074ef4c64d0edbf70a531cfb8889ebc6d0b06..1f0a6d303bec2360849e560dc204fa8f94b73af0 100644 (file)
@@ -111,7 +111,7 @@ touch -d "$(git --git-dir=%(where_git)s  log -1 --format=date_format)" %(where)s
 set -x
 rmdir %(where)s
 git clone %(remote)s %(where)s && \
-git --git-dir=%(where_git)s --work-tree=%(where)s checkout %(tag)s
+git --git-dir=%(where_git)s --work-tree=%(where)s checkout %(tag)s && \
 touch -d "$(git --git-dir=%(where_git)s  log -1 --format=date_format)" %(where)s
 """
     cmd = cmd % {'remote': from_what,