summaryrefslogtreecommitdiffstats
path: root/scripts/libmakepkg
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2015-10-19 05:47:19 +0200
committerAllan McRae <allan@archlinux.org>2015-10-19 05:48:56 +0200
commit5301d3fe8fc3fc0a65f6361ba3b4afcdcb9c2cf8 (patch)
tree96d3baac27cabf62add001d9bb9c3f8656b8a03d /scripts/libmakepkg
parent29d4dcf767b7325ac7e9bbaa4c0b45e3e3ee2c73 (diff)
downloadpacman-5301d3fe8fc3fc0a65f6361ba3b4afcdcb9c2cf8.tar.gz
pacman-5301d3fe8fc3fc0a65f6361ba3b4afcdcb9c2cf8.tar.xz
Remove space before ellipses
Makes all use of ellipses consistent... Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg')
-rw-r--r--scripts/libmakepkg/source/bzr.sh.in4
1 files changed, 2 insertions, 2 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