blob: 2c06594d8b61420f521c16bb2eaad148993d830b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
for FILE in $(find target/debug/deps); do
echo
echo $FILE
curl -v localhost:3900/$FILE -X PUT -H 'Host: garage' -H 'Content-Type: application/blob' --data-binary "@$FILE"
done
|