pyside6-debian/upload.sh

17 lines
277 B
Bash
Raw Normal View History

2023-05-25 15:44:45 +00:00
#!/bin/bash
PPA_ARCHIVE="ppa:ad5001/logarithmplotter"
# Build and sign the packages.
for i in output/*; do
cd "$i"
debuild -S -sa -k"mail@ad5001.eu"
cd ../../
done
# Upload every package
cd output
for i in *_source.changes; do
dput $PPA_ARCHIVE "./$i"
done