diff options
author | Allan McRae <allan@archlinux.org> | 2011-07-18 14:28:04 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-07-18 10:35:57 -0500 |
commit | 49427d1fb4f7cb9cfb76e430343510fba5f09e6a (patch) | |
tree | 02decedc0693e892c1b7639c76ccb831e45ba6c9 /scripts | |
parent | bf120635a7fdbb2caeb73fa0774bf718f2a127ae (diff) | |
download | pacman-49427d1fb4f7cb9cfb76e430343510fba5f09e6a.tar.xz |
repo-add: do not print full path of signature file
The full path to the signature file when it is created is in a temporary
directory so only print the filename.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/repo-add.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index 3fc3abc5..c598ad9b 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -195,7 +195,7 @@ create_signature() { gpg --detach-sign --use-agent ${SIGNWITHKEY} "$dbfile" &>/dev/null || ret=$? if (( ! ret )); then - msg2 "$(gettext "Created signature file %s.")" "$dbfile.sig" + msg2 "$(gettext "Created signature file %s.")" "${dbfile##*/}.sig" else warning "$(gettext "Failed to sign package database.")" fi |