[IMP] script todo: print all log paths when opening the install monitor

After "Opening the interactive monitor..." the install now lists every
VM's log file path, so they can be read or shared even when leaving the
dashboard before the installs finish.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mathieu Benoit 2026-07-28 04:41:41 +00:00
parent 0830c895eb
commit 4a821226fb
2 changed files with 10 additions and 0 deletions

View file

@ -1725,6 +1725,12 @@ class TODO:
return
manifest = launch_installs(vms, branch, remote)
print(f"\n🖥 {t('Opening the interactive monitor...')}")
# Affiche tous les chemins de log (pour les consulter/partager même si
# on quitte le dashboard avant la fin).
print(f" {t('Log files:')}")
with open(manifest, encoding="utf-8") as _fh:
for entry in json.load(_fh)["vms"]:
print(f" {entry['log']}")
try:
run_monitor(manifest)
except ImportError:

View file

@ -1447,6 +1447,10 @@ TRANSLATIONS = {
"fr": "Lire les logs :",
"en": "Read the logs:",
},
"Log files:": {
"fr": "Fichiers de log :",
"en": "Log files:",
},
"Install textual for the dashboard (pip).": {
"fr": "Installez textual pour le dashboard (pip).",
"en": "Install textual for the dashboard (pip).",