ppp-sync/external-mozilla.sh

19 lines
475 B
Bash
Raw Normal View History

2023-08-24 23:13:27 +02:00
#! /bin/bash
set -e
# Give correct perms to Apt version checker
chmod 755 ./ppp
# Extranal Mozilla PPA MIRROR
2023-09-28 17:51:18 +02:00
mkdir -p ./output
cd ./output
../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/dists/lunar/main/binary-amd64/Packages.xz https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/ ./
2023-08-24 23:13:27 +02:00
cd ../
2023-09-28 17:51:18 +02:00
if [ $(ls ./output/ | wc -l) -lt 1 ]; then
echo "Lunar repos are synced"
exit 0
fi