summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Redaelli <timothy.redaelli@gmail.com>2014-12-19 14:22:27 +0100
committerAllan McRae <allan@archlinux.org>2014-12-21 07:26:45 +0100
commit91a56a707253a04123f61530f4e1127e463481e9 (patch)
tree01534a0a37ef80c70b9d4f2c29974a4daf8a9b85
parentd107aced3751f6136e119603d9d33fdc49848aa8 (diff)
downloadpacman-91a56a707253a04123f61530f4e1127e463481e9.tar.gz
pacman-91a56a707253a04123f61530f4e1127e463481e9.tar.xz
Fix double spaces in "Running %s as root is not allowed" message
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 33dff245..23e70cd3 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -3435,7 +3435,7 @@ CARCH=${_CARCH:-$CARCH}
if (( ! INFAKEROOT )); then
if (( EUID == 0 )); then
error "$(gettext "Running %s as root is not allowed as it can cause permanent,\n\
-catastrophic damage to your system.")"
+catastrophic damage to your system.")" "makepkg"
exit 1 # $E_USER_ABORT
fi
else