diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-09-02 23:06:20 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-09-02 23:06:20 +0200 |
commit | 1abfd6200ebc17de7eb1a151fa0c901f757cd838 (patch) | |
tree | 04d7e7b4db50332ef440d1a6691b32487ca60cb7 | |
parent | 4054b066ab69e403c3933ca28d32dd9bf91723f8 (diff) |
Fix conflict between --data-urlencode and -Fv1.3.0
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | fb.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |