From 84348bf9eb398a1a4fc93a15d4704369e9c9bedb Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Sun, 18 Feb 2018 23:41:24 +0100 Subject: [PATCH] Tweak messages in update script. --- home/bin/update-profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/bin/update-profile b/home/bin/update-profile index bc9d20a..061a7be 100755 --- a/home/bin/update-profile +++ b/home/bin/update-profile @@ -12,6 +12,7 @@ fi git fetch -p # Synchronizing valid GPG keys + echo "Preparing for update verification..." export GNUPGHOME="$HOME/.local/profile-data/gnupg" mkdir -p "${GNUPGHOME}" chmod 700 "${GNUPGHOME}" @@ -20,7 +21,7 @@ fi B5108C5A158A6608AD3361DA1573F6D8EFE4D0CF \ 04ADEF85EA6AEC6F75941E84468BBEEBB9EC6AEA - echo "Validating updates..." + echo "Verifying updates..." git rev-list --format=oneline origin..HEAD | while IFS= read -r line; do sha="$(echo "$line" | awk '{print $1}')" title="$(echo "$line" | cut -f 1 -d ' ' --complement)"