aboutsummaryrefslogtreecommitdiff
path: root/app/backends/audiocpp/build.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-27 17:46:02 -0400
committerhistoria <historiavg@proton.me>2026-08-27 17:46:02 -0400
commit2a9a78dd1caec0811ed2640b28375890ee96e4cc (patch)
tree6aebbb503a98eb035015ff56e51d4ccc4f4a395e /app/backends/audiocpp/build.py
parentcef2352a5e81b272d067c2c02eb9588e54edfcfd (diff)
downloadtts-audiobook-generator-2a9a78dd1caec0811ed2640b28375890ee96e4cc.tar.gz
feat: help menu in tui
Diffstat (limited to 'app/backends/audiocpp/build.py')
-rw-r--r--app/backends/audiocpp/build.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/backends/audiocpp/build.py b/app/backends/audiocpp/build.py
index b850859..22c72a1 100644
--- a/app/backends/audiocpp/build.py
+++ b/app/backends/audiocpp/build.py
@@ -63,7 +63,7 @@ def update(*, emit=None, cancel=None) -> int:
The rebuild target is the backend recorded in server.json, else the
one detected from existing build directories; when neither names one
(nothing was ever built) the update stops after the checkout refresh
- — 'Build audio.cpp server' handles a first build. The rebuild itself
+ — 'Build audio.cpp Server' handles a first build. The rebuild itself
runs when the sources changed (HEAD moved) or the on-disk binary is
missing or older than HEAD's commit time — the latter heals an
interrupted (cancelled or failed) earlier rebuild, which leaves the
@@ -94,7 +94,7 @@ def update(*, emit=None, cancel=None) -> int:
backend = _rebuild_backend(checkout)
if backend is None:
print("[INFO] audiocpp_server was never built for a known "
- "backend; skipping the rebuild. 'Build audio.cpp server' "
+ "backend; skipping the rebuild. 'Build audio.cpp Server' "
"builds one.")
return 0
binary = built_server_binary(checkout, backend)
@@ -115,7 +115,7 @@ def update(*, emit=None, cancel=None) -> int:
print(f"[WARNING] rebuild exited with code {build_rc}; see the "
"messages above (the build log under app/logs/ has the "
"full output). The binary on disk is now older than the "
- "checked-out sources; re-running 'Update backends' will "
+ "checked-out sources; re-running 'Update Backends' will "
"retry the rebuild.")
else:
print("[OK] rebuild complete.")