1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

makepkg: fix typo (missing quotes)

Signed-off-by: Rémy Oudompheng <remy@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Rémy Oudompheng 2011-06-28 08:22:57 +02:00 committed by Dan McGee
parent e92905a2c8
commit 4c80f994c3

View File

@ -1562,7 +1562,7 @@ devel_check() {
newpkgver=$(date +%Y%m%d)
elif [[ -n ${_gitroot} && -n ${_gitname} ]] ; then
if ! type -p git >/dev/null; then
warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "git "git"
warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "git" "git"
return 0
fi
msg "$(gettext "Determining latest %s revision...")" 'git'
@ -1576,7 +1576,7 @@ devel_check() {
newpkgver=$(LC_ALL=C svn info $_svntrunk | sed -n 's/^Last Changed Rev: \([0-9]*\)$/\1/p')
elif [[ -n ${_bzrtrunk} && -n ${_bzrmod} ]] ; then
if ! type -p bzr >/dev/null; then
warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "bzr" bzr"
warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "bzr" "bzr"
return 0
fi
msg "$(gettext "Determining latest %s revision...")" 'bzr'