Salome HOME
sat #8532 : renommage option last_terminal en last_compile
authorcrouzet <nicolas.crouzet@cea.fr>
Fri, 11 Jan 2019 14:24:16 +0000 (15:24 +0100)
committercrouzet <nicolas.crouzet@cea.fr>
Fri, 11 Jan 2019 14:24:16 +0000 (15:24 +0100)
commands/log.py
complete_sat.sh

index 5ecf7028b9c9309054348fbf89a799b15217d683..d42fda0858b460181078874b4b494855a3ca3691 100644 (file)
@@ -38,8 +38,8 @@ parser.add_option('t', 'terminal', 'boolean', 'terminal',
                   "Optional: Show the log (in terminal) of a command, with user choice.")
 parser.add_option('l', 'last', 'boolean', 'last',
                   "Optional: Show the log (in browser) of the last launched command.")
-parser.add_option('', 'last_terminal', 'boolean', 'last_terminal',
-                  "Optional: Show the log (in terminal) of the last launched command.")
+parser.add_option('', 'last_compile', 'boolean', 'last_compile',
+                  "Optional: Show the log (in terminal) of the last compilation for all products.")
 parser.add_option('f', 'full', 'boolean', 'full',
                   "Optional: Show the logs of ALL the launched commands.")
 parser.add_option('c', 'clean', 'int', 'clean',
@@ -274,7 +274,7 @@ def run(args, runner, logger):
       logger.warning("problem for writing in directory '%s', may be not owner." % logDir)
 
     # If the last option is invoked, just, show the last log file
-    if options.last_terminal:
+    if options.last_compile:
         src.check_config_has_application(runner.cfg)
         log_dirs = os.listdir(os.path.join(runner.cfg.APPLICATION.workdir, 'LOGS'))
         show_last_logs(logger, runner.cfg, log_dirs)
index 5b87bf7abfa26d1ba56e75b2436cd72b8b617f59..db6b7cdcaa77e42ebefdb3458e4a94046a283635 100755 (executable)
@@ -32,7 +32,7 @@ _show_applications()
             opts2=$(echo --list --value --edit --info $opts2)
             ;;
         log)
-            opts2=$(echo --clean --full --last --terminal --no_browser $opts2)
+            opts2=$(echo --clean --full --last --terminal --last_compile --no_browser $opts2)
             ;;
         jobs)
             opts2=$(echo --name --only_jobs --list --completion --test_connection --input_boards --publish $opts2)
@@ -162,7 +162,7 @@ _salomeTools_complete()
             return 0        
             ;;
         log)
-            opts="--clean --last --terminal --last --last_terminal --no_browser"
+            opts="--clean --last --terminal --last --last_compile --no_browser"
             COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
             return 0
             ;;