From abbb7b7e2e52de8d284730ff2a420c6f25b8b8fd Mon Sep 17 00:00:00 2001 From: Rakarake Date: Sun, 29 Mar 2026 18:07:12 +0200 Subject: [PATCH] the culprit --- push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.sh b/push.sh index edfda1c..f42d4e3 100755 --- a/push.sh +++ b/push.sh @@ -2,6 +2,6 @@ for file in $(find public -type f) do echo "uploading: $file" - curl -X PUT --data @$file -u "$USER:$PASSWORD" https://mdf.farm/api/${file#*/} + curl -u "$USER:$PASSWORD" https://mdf.farm/api/${file#*/} --upload-file $file done