Skip to content
Snippets Groups Projects
Commit 84c40aa8 authored by Arkadiusz Janz's avatar Arkadiusz Janz
Browse files

Added uploaded.sh

parent a45d8591
Branches
No related tags found
1 merge request!5Deb pack
#!/bin/bash
APT_USERNAME=$1
APT_PASSWORD=$2
APT_SERVER=$3
for file in *.deb ; do
curl --fail -i -X POST -F "file=@./${file}" -u "${APT_USERNAME}:${APT_PASSWORD}" $APT_SERVER
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment