mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-16 13:22:43 +01:00
7 lines
182 B
Bash
7 lines
182 B
Bash
#!/bin/sh
|
|
for i in /var/db/repos /var/lib/layman; do
|
|
if [ -x "${i}"/pentoo/scripts/pentoo-updater.sh ]; then
|
|
exec "${i}"/pentoo/scripts/pentoo-updater.sh
|
|
exit $?
|
|
fi
|
|
done
|