feat: serve paste entries
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Jef Roosens 2022-11-21 16:28:27 +01:00
parent 7f42d540b5
commit 97ed770166
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
3 changed files with 11 additions and 6 deletions

View file

@ -14,5 +14,5 @@ elif [ "$1" = get ]; then
curl -is "$URL/$2" | sed -En 's/^[lL]ocation: (.*)/\1/p'
elif [ "$1" = paste ]; then
curl -v --data-binary @"$2" -XPOST -H "X-Api-Key: $API_KEY" "$URL/p/"
curl --data-binary @"$2" -XPOST -H "X-Api-Key: $API_KEY" "$URL/p/"
fi