Tuned messages, following Isabelle/d6a2a8bc40e1
ci/woodpecker/push/build Pipeline was successful Details

This commit is contained in:
Makarius Wenzel 2022-12-05 15:21:26 +01:00
parent 791990039b
commit ec0d525426
1 changed files with 5 additions and 2 deletions

View File

@ -62,7 +62,9 @@ object DOF_Mkroot
val document_path = session_dir + Path.explode("document")
if (document_path.file.exists) error("Cannot overwrite existing " + document_path)
progress.echo("\nCreating session " + quote(name) + " in " + session_dir.absolute)
progress.echo(
(if (quiet) "" else "\n") +
"Initializing session " + quote(name) + " in " + session_dir.absolute)
/* ROOT */
@ -106,7 +108,8 @@ end
/* Mercurial repository */
if (init_repos) {
progress.echo(" \nInitializing Mercurial repository " + session_dir)
progress.echo(
(if (quiet) "" else "\n") + "Initializing Mercurial repository " + session_dir.absolute)
val hg = Mercurial.init_repository(session_dir)