10 lines
394 B
Bash
Executable File
10 lines
394 B
Bash
Executable File
# Pull down existing ppa repo db files etc
|
|
mkdir -p ./output/repo
|
|
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
|
|
|
|
# Remove our existing package from the repo
|
|
reprepro -V --basedir ./output/repo/ removefilter lunar 'Package (% mesa-vulkan*)'
|
|
|
|
# Push the updated ppa repo to the server
|
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|