Compare commits

..

No commits in common. "84348bf9eb398a1a4fc93a15d4704369e9c9bedb" and "c8f6b69615b25f6abf4a8c03bffe6c17d6d65062" have entirely different histories.

1 changed files with 2 additions and 4 deletions

View File

@ -9,19 +9,17 @@ fi
cd ~/.local/profile-git
echo "Fetching updates for profile..."
git fetch -p
git fetch
# Synchronizing valid GPG keys
echo "Preparing for update verification..."
export GNUPGHOME="$HOME/.local/profile-data/gnupg"
mkdir -p "${GNUPGHOME}"
chmod 700 "${GNUPGHOME}"
gpg --fingerprint
gpg --recv-keys \
B5108C5A158A6608AD3361DA1573F6D8EFE4D0CF \
04ADEF85EA6AEC6F75941E84468BBEEBB9EC6AEA
echo "Verifying updates..."
echo "Validating 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)"