Remove space before ellipses

Makes all use of ellipses consistent...

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2015-10-19 13:47:19 +10:00
parent 29d4dcf767
commit 5301d3fe8f
3 changed files with 4 additions and 4 deletions

View file

@ -44,14 +44,14 @@ download_bzr() {
[[ -z "$dir" ]] && dir="$SRCDEST/$(get_filename "$netfile")" [[ -z "$dir" ]] && dir="$SRCDEST/$(get_filename "$netfile")"
if [[ ! -d "$dir" ]] || dir_is_empty "$dir" ; then 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 if ! bzr branch "$url" "$dir" --no-tree --use-existing-dir; then
error "$(gettext "Failure while branching %s")" "${displaylocation}" error "$(gettext "Failure while branching %s")" "${displaylocation}"
plain "$(gettext "Aborting...")" plain "$(gettext "Aborting...")"
exit 1 exit 1
fi fi
elif (( ! HOLDVER )); then elif (( ! HOLDVER )); then
msg2 "$(gettext "Pulling %s ...")" "${displaylocation}" msg2 "$(gettext "Pulling %s...")" "${displaylocation}"
cd_safe "$dir" cd_safe "$dir"
if ! bzr pull "$url"; then if ! bzr pull "$url"; then
# only warn on failure to allow offline builds # only warn on failure to allow offline builds

View file

@ -482,7 +482,7 @@ refresh_keys() {
verify_sig() { verify_sig() {
local ret=0 local ret=0
for sig; do 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 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" error "$(gettext "The signature identified by %s could not be verified.")" "$sig"
ret=1 ret=1

View file

@ -192,7 +192,7 @@ db_remove_delta() {
msg2 "$(gettext "Removing existing entry '%s'...")" "$filename" msg2 "$(gettext "Removing existing entry '%s'...")" "$filename"
# empty deltas file contains only "%DELTAS%" # empty deltas file contains only "%DELTAS%"
if (( $(wc -l < "$deltas") == 1 )); then if (( $(wc -l < "$deltas") == 1 )); then
msg2 "$(gettext "Removing empty deltas file ...")" msg2 "$(gettext "Removing empty deltas file...")"
rm "$deltas" rm "$deltas"
fi fi