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

* Tom Killian <tom@archlinux.org>

Properly align checksums on makepkg -g
This commit is contained in:
Aaron Griffin 2007-04-04 02:03:44 +00:00
parent d2c6bcdbbd
commit ec689b5978

View File

@ -746,7 +746,11 @@ else
if [ $ct -eq 0 ]; then
echo -n "${integrity_name}s=("
else
echo -ne "\t "
indent=0
while [ $indent -lt $((${#integrity_name}+3)) ]; do
echo -n " "
indent=$(($indent+1))
done
fi
echo -n "'$sum'"
ct=$(($ct+1))