summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/libmakepkg/source/bzr.sh.in4
-rw-r--r--scripts/pacman-key.sh.in2
-rw-r--r--scripts/repo-add.sh.in2
3 files changed, 4 insertions, 4 deletions
diff --git a/scripts/libmakepkg/source/bzr.sh.in b/scripts/libmakepkg/source/bzr.sh.in
index e8da28be..19e73136 100644
--- a/scripts/libmakepkg/source/bzr.sh.in
+++ b/scripts/libmakepkg/source/bzr.sh.in
@@ -44,14 +44,14 @@ download_bzr() {
[[ -z "$dir" ]] && dir="$SRCDEST/$(get_filename "$netfile")"
if [[ ! -d "$dir" ]] || dir_is_empty "$dir" ; then
- msg2 "$(gettext "Branching %s ...")" "${displaylocation}"
+ msg2 "$(gettext "Branching %s...")" "${displaylocation}"
if ! bzr branch "$url" "$dir" --no-tree --use-existing-dir; then
error "$(gettext "Failure while branching %s")" "${displaylocation}"
plain "$(gettext "Aborting...")"
exit 1
fi
elif (( ! HOLDVER )); then
- msg2 "$(gettext "Pulling %s ...")" "${displaylocation}"
+ msg2 "$(gettext "Pulling %s...")" "${displaylocation}"
cd_safe "$dir"
if ! bzr pull "$url"; then
# only warn on failure to allow offline builds
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index 82328515..9f7b5236 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -482,7 +482,7 @@ refresh_keys() {
verify_sig() {
local ret=0
for sig; do
- msg "Checking %s ..." "$sig"
+ msg "Checking %s..." "$sig"
if ! "${GPG_PACMAN[@]}" --status-fd 1 --verify "$sig" | grep -qE '^\[GNUPG:\] TRUST_(FULLY|ULTIMATE)$'; then
error "$(gettext "The signature identified by %s could not be verified.")" "$sig"
ret=1
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in
index 69993a90..78218f1a 100644
--- a/scripts/repo-add.sh.in
+++ b/scripts/repo-add.sh.in
@@ -192,7 +192,7 @@ db_remove_delta() {
msg2 "$(gettext "Removing existing entry '%s'...")" "$filename"
# empty deltas file contains only "%DELTAS%"
if (( $(wc -l < "$deltas") == 1 )); then
- msg2 "$(gettext "Removing empty deltas file ...")"
+ msg2 "$(gettext "Removing empty deltas file...")"
rm "$deltas"
fi