a0ab08f911
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Horea Christian <horea.christ@yandex.com>
16 lines
199 B
Bash
16 lines
199 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
ROOT_DIR="/usr/share/gebuilder"
|
|
|
|
pushd "${ROOT_DIR}"
|
|
gebuild stemgentoo update
|
|
sleep 2
|
|
for file in roots/*/.gentoo/
|
|
do
|
|
gebuild "$file" update || true
|
|
sleep 2
|
|
done
|
|
popd
|