From 2f0c0af621d63125b002034792c9535639b291d8 Mon Sep 17 00:00:00 2001 From: lwthiker Date: Fri, 4 Mar 2022 17:11:42 +0200 Subject: [PATCH] Fix bug in wrapper scripts parameter passing Parameters to the wrapper scripts were passed incorrectly to the 'curl-impersonate' binary. --- chrome/curl_chrome98 | 2 +- chrome/curl_edge98 | 2 +- firefox/curl_ff91esr | 2 +- firefox/curl_ff95 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome/curl_chrome98 b/chrome/curl_chrome98 index f29400b..05d1e74 100755 --- a/chrome/curl_chrome98 +++ b/chrome/curl_chrome98 @@ -23,4 +23,4 @@ dir=`echo "$0" | sed 's%/[^/]*$%%'` --http2 --false-start --compressed \ --tlsv1.2 --no-npn --alps \ --cert-compression brotli \ - $@ + "$@" diff --git a/chrome/curl_edge98 b/chrome/curl_edge98 index 2139af6..cfe9242 100755 --- a/chrome/curl_edge98 +++ b/chrome/curl_edge98 @@ -23,4 +23,4 @@ dir=`echo "$0" | sed 's%/[^/]*$%%'` --http2 --false-start --compressed \ --tlsv1.2 --no-npn --alps \ --cert-compression brotli \ - $@ + "$@" diff --git a/firefox/curl_ff91esr b/firefox/curl_ff91esr index 870e446..12f7bd6 100755 --- a/firefox/curl_ff91esr +++ b/firefox/curl_ff91esr @@ -19,4 +19,4 @@ dir=`echo "$0" | sed 's%/[^/]*$%%'` -H 'Sec-Fetch-Site: none' \ -H 'Sec-Fetch-User: ?1' \ --http2 --false-start --compressed \ - $@ + "$@" diff --git a/firefox/curl_ff95 b/firefox/curl_ff95 index 15b2074..34ce46d 100755 --- a/firefox/curl_ff95 +++ b/firefox/curl_ff95 @@ -19,4 +19,4 @@ dir=`echo "$0" | sed 's%/[^/]*$%%'` -H 'Sec-Fetch-Site: none' \ -H 'Sec-Fetch-User: ?1' \ --http2 --false-start --compressed \ - $@ + "$@"