From 1abfd6200ebc17de7eb1a151fa0c901f757cd838 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 2 Sep 2013 23:06:20 +0200 Subject: Fix conflict between --data-urlencode and -F Signed-off-by: Florian Pritz --- fb.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fb.in b/fb.in index f3e36c2..06fa4e2 100644 --- a/fb.in +++ b/fb.in @@ -96,7 +96,7 @@ request_helper() { require_executable curl if [ -e "$apikey_file" ]; then - curlopts+=("--data-urlencode" "apikey@${apikey_file}") + curlopts+=("-F" "apikey=<${apikey_file}") else curlopts+=("-n") fi -- cgit v1.2.3-24-g4f1b