Skip to content
Commits on Source (2)
......@@ -128,12 +128,20 @@ confirm
log "Preparing"
pg_timestamp pre_${suite}_${newrev}
if [[ ! -f ${pusuite}.list ]]; then
dak control-suite -l ${pusuite} > ${pusuite}.list &
fi
if [[ ! -f ${suite}.list ]]; then
dak control-suite -l ${suite} > ${suite}.list &
fi
if [[ ${suitename} != jessie ]]; then
if [[ ! -f ${suite}-debug.list ]]; then
dak control-suite -l ${suite}-debug > ${suite}-debug.list &
fi
if [[ ! -f ${pusuite}-debug.list ]]; then
dak control-suite -l ${pusuite}-debug > ${pusuite}-debug.list &
fi
fi
wait
if [[ -n ${skiplist} ]]; then
......@@ -159,7 +167,12 @@ if [[ -n ${skiplist} ]]; then
fi
log "Merging ${pusuite} into ${suite}"
dak control-suite --add ${suite} < ${pusuite}.list
if dak control-suite --add ${suite} < ${pusuite}.list; then
log "Done"
else
log "Please check problem and hit enter when i can continue"
read
fi
if [[ ${suitename} != jessie ]]; then
dak control-suite --add ${suite}-debug < ${pusuite}-debug.list
fi
......