[skip ci] I'll fix the build monday

This commit is contained in:
2025-02-03 21:38:55 +02:00
parent 74755a8cf3
commit 72e04ddce1

View File

@@ -67,7 +67,7 @@ function curlRequest {
if [[ "$GRPOPPRO_DEBUG" == "off" ]]; then
if [[ "$OSTYPE" == "linux-gnu" ]]; then
response="$(curl_ff117 -s -L \
response="$(curl_chrome100 -s -L \
-c"$GRPOPPRO_COOKIE_FILE" \
-b"$GRPOPPRO_COOKIE_FILE" \
"$url" \
@@ -101,7 +101,7 @@ function curlRequest {
if [[ "$OSTYPE" == "linux-gnu" ]]; then
LOG_FILE="/tmp/grpoppro_curl_commands.log"
local curl_command=(
"curl_ff117"
"curl_chrome100"
"-s"
"-L"
"-c$GRPOPPRO_COOKIE_FILE"
@@ -622,7 +622,7 @@ fi
# Ensure curl-impersonate is installed
if [[ "$OSTYPE" == "linux-gnu" ]]; then
if ! command -v curl-impersonate-ff >/dev/null 2>&1; then
if ! command -v curl-impersonate-chrome >/dev/null 2>&1; then
message "You should get curl-impersonate to make it seem less obvious you use curl"
exit 0
fi