script/keyring_validate.sh: fix a typo

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2024-06-13 08:03:08 -07:00
parent d6e427e1ea
commit 2cb46c6e0d
+1 -1
View File
@@ -73,7 +73,7 @@ echo "------------------------------------------------------------"
gpg --show-keys <"$root/$project.keyring" gpg --show-keys <"$root/$project.keyring"
echo "------------------------------------------------------------" echo "------------------------------------------------------------"
# Check that each entry in the kering is actually a maintainer's key. # Check that each entry in the keyring is actually a maintainer's key.
while IFS="" read -d $'\0' -r block || [ -n "$block" ]; do while IFS="" read -d $'\0' -r block || [ -n "$block" ]; do
username="$(sed -En "s|^Comment:.* github=(\w+).*|\1|p" <<<"$block")" username="$(sed -En "s|^Comment:.* github=(\w+).*|\1|p" <<<"$block")"