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

removal of unnecessary '\' in integrity check generation

This commit is contained in:
Dan McGee 2007-02-01 01:18:22 +00:00
parent d97f357f03
commit 55f406fd67

View File

@ -626,7 +626,6 @@ else
msg "Generating ${integrity_name}s for source files" msg "Generating ${integrity_name}s for source files"
plain "" plain ""
ct=0 ct=0
newline=0
numsrc=${#source[@]} numsrc=${#source[@]}
for netfile in "${source[@]}"; do for netfile in "${source[@]}"; do
file=$(strip_url "$netfile") file=$(strip_url "$netfile")
@ -641,8 +640,7 @@ else
if [ $ct -eq $numsrc ]; then if [ $ct -eq $numsrc ]; then
echo ')' echo ')'
else else
echo ' \' echo
newline=0
fi fi
done done
plain "" plain ""