mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

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>
17 lines
379 B
Bash
Executable File
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
|