summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-08-13 13:17:59 +0200
committerDan McGee <dan@archlinux.org>2011-08-15 14:07:13 +0200
commit31a7b150b0a7485b9747e7d72416e4257a30140a (patch)
tree0dbd5bc0e05e8cbf97bf241bafaad501fb11df76
parent20b5cc96be546db4e86b2216de3fccaeb7b2a4b2 (diff)
downloadpacman-31a7b150b0a7485b9747e7d72416e4257a30140a.tar.gz
pacman-31a7b150b0a7485b9747e7d72416e4257a30140a.tar.xz
repo-add: indicate whether package signature is found
When adding a package to a repo, it is useful to be able to see that repo-add has indeed found the signature file. [Dan: update text to be more in line with other messages] Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/repo-add.sh.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in
index 5e085922..85b938ad 100644
--- a/scripts/repo-add.sh.in
+++ b/scripts/repo-add.sh.in
@@ -277,6 +277,7 @@ db_write_entry() {
# compute base64'd PGP signature
if [[ -f "$pkgfile.sig" ]]; then
+ msg2 "$(gettext "Adding package signature...")"
pgpsig=$(openssl base64 -in "$pkgfile.sig" | tr -d '\n')
fi