mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 11:00:48 +02:00
8 lines
206 B
Bash
8 lines
206 B
Bash
#!/bin/sh
|
|
for i in /var/db/repos /var/lib/layman; do
|
|
emaint sync -r pentoo
|
|
if [ -x "${i}"/pentoo/scripts/pentoo-updater.sh ]; then
|
|
exec "${i}"/pentoo/scripts/pentoo-updater.sh
|
|
exit $?
|
|
fi
|
|
done
|