Remove globbing support as it can't guarantee ordering

svn path=/trunk/; revision=568
This commit is contained in:
Andrew Gaffney 2008-09-04 02:17:27 +00:00
parent cd5870e210
commit b9429ffe3d
3 changed files with 10 additions and 4 deletions

View file

@ -2,6 +2,10 @@
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Id$
04 Sep 2008; Andrew Gaffney <agaffney@gentoo.org> catalyst-auto,
catalyst-auto.conf:
Remove globbing support as it can't guarantee ordering
04 Sep 2008; Andrew Gaffney <agaffney@gentoo.org> catalyst-auto:
Add a bit of extra verbosity

View file

@ -115,7 +115,7 @@ fi
cd ${SPECS_DIR}
for i in $(ls -1 ${SPECS}); do
for i in ${SPECS}; do
cp --parents ${i} ${TMPDIR}/specs/
done
@ -139,7 +139,7 @@ if ! run_cmd "catalyst -c ${CATALYST_CONFIG} -s ${DATESTAMP}" "${TMPDIR}/log/sna
send_email "Catalyst build error - snapshot" "$(tail -n 200 ${TMPDIR}/log/snapshot-${DATESTAMP}.log)"
fi
for i in $(ls -1 ${SPECS}); do
for i in ${SPECS}; do
LOGFILE="${TMPDIR}/log/$(echo "${i}" | sed -e 's:/:_:' -e 's:\.spec$::').log"
run_cmd "catalyst -a -p -c ${CATALYST_CONFIG} -f ${i}" ${LOGFILE}
if [ $? != 0 ]; then

View file

@ -2,8 +2,10 @@
# self-explanatory.
SPECS_DIR=/release/svn-releng/trunk/releases/2008.0/specs/amd64
SPECS="stage[123].spec installcd-stage[12]*.spec"
SPECS="${SPECS} stage[23]-desktop.spec livecd-stage[12]*.spec"
SPECS="stage1.spec stage2.spec stage3.spec"
SPECS="${SPECS} installcd-stage1.spec installcd-stage2-minimal.spec"
SPECS="${SPECS} stage2-desktop.spec stage3-desktop.spec"
SPECS="${SPECS} livecd-stage1.spec livecd-stage2.spec"
#EMAIL_TO=releng@gentoo.org
EMAIL_TO=andrew@gentoo.org