layerindex-web/rrs/tools/daily_run.sh
Paul Eggleton 10a639a6b7 rrs/tools/rrs_unique_recipes: drop
We can't just delete arbitrary recipes that do exist in the layer if
we're in a general layer index database. We'll need to handle this in a
different way, or just live with the fact that there will be duplicate
entries.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04 23:57:52 +12:00

17 lines
379 B
Bash
Executable File

#!/bin/bash
rrs_dir=__RRS_PATH__
venv_activate=__VENV_ACTIVATE__
source $venv_activate
$rrs_dir/layerindex/update.py --reload
$rrs_dir/rrs/tools/rrs_maintainer_history.py -d
$rrs_dir/rrs/tools/rrs_upgrade_history.py -d
$rrs_dir/rrs/tools/rrs_upstream_history.py -d
$rrs_dir/rrs/tools/rrs_distros.py -d
if [ "$1" = "email" ]; then
$rrs_dir/rrs/tools/rrs_upstream_email.py
fi