From 327aba8aa6a80b21af4941e607acc7c0eb806e66 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sun, 30 Nov 2025 00:11:55 -0500 Subject: [PATCH] bootstrap: cosmetic --- usr/local/share/bastille/bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/local/share/bastille/bootstrap.sh b/usr/local/share/bastille/bootstrap.sh index 242e9ebe..e1b1a40e 100644 --- a/usr/local/share/bastille/bootstrap.sh +++ b/usr/local/share/bastille/bootstrap.sh @@ -283,14 +283,14 @@ bootstrap_release_legacy() { errors=$((errors + 1)) error_continue "[ERROR]: Failed to validate archive: ${archive}.txz" else - info "\nChecksum validated." echo "MANIFEST: ${SHA256_DIST}" echo "DOWNLOAD: ${SHA256_FILE}" + info "\nChecksum validated: ${archive}.txz" fi fi # Extract distfile - info "\nExtracting archive: ${archive}.txz..." + info "\nExtracting archive: ${archive}.txz" if [ -f "${bastille_cachedir}/${RELEASE}/${archive}.txz" ]; then if ! /usr/bin/tar -C "${bastille_releasesdir}/${RELEASE}" -xf "${bastille_cachedir}/${RELEASE}/${archive}.txz"; then errors=$((errors + 1)) @@ -714,7 +714,7 @@ if [ "${errors}" -eq 0 ]; then fi # Success - info "\nBootstrap successful." + info "\nBootstrap successful!" echo "See 'bastille --help' for available commands." echo else