diff options
author | Allan McRae <allan@archlinux.org> | 2011-08-13 21:17:59 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-15 07:07:13 -0500 |
commit | 31a7b150b0a7485b9747e7d72416e4257a30140a (patch) | |
tree | 0dbd5bc0e05e8cbf97bf241bafaad501fb11df76 | |
parent | 20b5cc96be546db4e86b2216de3fccaeb7b2a4b2 (diff) |
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.in | 1 |
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 |