modified deb-upload to be able to upload an entire

directory as well
This commit is contained in:
Kabooshki 2024-09-10 13:46:27 +00:00
parent f52c16dfa1
commit 85b96ef95b
2 changed files with 18 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
keys.txt
/upload

View File

@ -1,5 +1,19 @@
#!/bin/bash
key=$(sed -n 1p keys.txt)
curl --user Archive:$key --upload-file $1 https://gitea.henriserverack.com/api/packages/Archive-Team/debian/pool/bullseye/main/upload
echo "Upload Complete"
if [[ -f $1 ]]; then
curl --user Archive:$key --upload-file $1 https://gitea.henriserverack.com/api/packages/Archive-Team/debian/pool/bullseye/main/upload
echo "Upload Complete"
elif [[ -d $1 ]]; then
for file in "$1"/*; do
if [[ -f "$file" ]]; then
curl --user Archive:$key --upload-file $file https://gitea.henriserverack.com/api/packages/Archive-Team/debian/pool/bullseye/main/upload
echo "uploaded $file"
fi
if [[ -d "$file" ]]; then
iterate "$file"
echo "skipping over $file"
fi
done
fi