diff options
author | Andrew Manison <amanison@anselsystems.com> | 2010-09-11 14:35:59 +0000 |
---|---|---|
committer | Andrew Manison <amanison@anselsystems.com> | 2010-09-11 14:35:59 +0000 |
commit | 8c642cce9d87fb03f46d9ac3e57fb520cd586cff (patch) | |
tree | d2461ce2cc4aa15a351c9248ef186de79d4f05f1 /rebuild-alpine.sh | |
parent | 46a8276904fb4ab54491cc4b7d70449f0db6ddb8 (diff) | |
download | aports-8c642cce9d87fb03f46d9ac3e57fb520cd586cff.tar.bz2 aports-8c642cce9d87fb03f46d9ac3e57fb520cd586cff.tar.xz |
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.
Diffstat (limited to 'rebuild-alpine.sh')
-rwxr-xr-x | rebuild-alpine.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rebuild-alpine.sh b/rebuild-alpine.sh index b5d72f92b..24ce9d47b 100755 --- a/rebuild-alpine.sh +++ b/rebuild-alpine.sh @@ -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 |