diff options
author | Allan McRae <allan@archlinux.org> | 2015-01-23 05:48:16 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-02-12 04:35:09 +0100 |
commit | cf3d5e4830386b3848b64bcaf0d27564580595b1 (patch) | |
tree | 15358c856c64bfff4b3d722c394fe2800df199b1 | |
parent | b5b2f0b1bfdf52fb313d68a4134f46995166d4c4 (diff) | |
download | pacman-cf3d5e4830386b3848b64bcaf0d27564580595b1.tar.gz pacman-cf3d5e4830386b3848b64bcaf0d27564580595b1.tar.xz |
repo-add: clarify invalid repo extension message
Signed-off-by: Allan McRae <allan@archlinux.org>
-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 49b1c3e7..db397100 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -249,7 +249,7 @@ verify_repo_extension() { *.@(db|files).tar.xz) TAR_OPT="J" ;; *.@(db|files).tar.Z) TAR_OPT="Z" ;; *.@(db|files).tar) TAR_OPT="" ;; - *) error "$(gettext "'%s' does not have a valid archive extension.")" \ + *) error "$(gettext "'%s' does not have a valid database archive extension.")" \ "$repofile" exit 1 ;; esac |