* Tom Killian <tom@archlinux.org>
Properly align checksums on makepkg -g
This commit is contained in:
parent
d2c6bcdbbd
commit
ec689b5978
1 changed files with 5 additions and 1 deletions
|
@ -746,7 +746,11 @@ else
|
||||||
if [ $ct -eq 0 ]; then
|
if [ $ct -eq 0 ]; then
|
||||||
echo -n "${integrity_name}s=("
|
echo -n "${integrity_name}s=("
|
||||||
else
|
else
|
||||||
echo -ne "\t "
|
indent=0
|
||||||
|
while [ $indent -lt $((${#integrity_name}+3)) ]; do
|
||||||
|
echo -n " "
|
||||||
|
indent=$(($indent+1))
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
echo -n "'$sum'"
|
echo -n "'$sum'"
|
||||||
ct=$(($ct+1))
|
ct=$(($ct+1))
|
||||||
|
|
Loading…
Add table
Reference in a new issue