release.sh: Fixed mail flags for cc recipients.

Fixed mail flags for cc recipients in the event of failed builds. Flag had been mistakenly set to -c instead of -cc.
This commit is contained in:
Andrew Manison 2010-09-11 14:35:59 +00:00
parent 46a8276904
commit 8c642cce9d

View File

@ -39,7 +39,7 @@ build () {
if [ -n "$mail" ] ; then
maintainer=$(grep Maintainer APKBUILD | cut -d " " -f 3-)
if [ -n "$maintainer" ] ; then
recipients="$maintainer -c dev@lists.alpinelinux.org"
recipients="$maintainer -cc dev@lists.alpinelinux.org"
else
recipients="dev@lists.alpinelinux.org"
fi