Fix hard-coded [object Object] string (thanks!)
This commit is contained in:
8
grpoppro
8
grpoppro
@@ -601,9 +601,11 @@ fi
|
||||
: "${menu:=fuzzel -d -p }"
|
||||
|
||||
# Ensure curl-impersonate is installed
|
||||
if ! command -v curl-impersonate-ff >/dev/null 2>&1; then
|
||||
message "You should get curl-impersonate to make it seem less obvious you use curl"
|
||||
exit 0
|
||||
if [[ "$OSTYPE" == "linux-gnu" ]]; then
|
||||
if ! command -v curl-impersonate-ff >/dev/null 2>&1; then
|
||||
message "You should get curl-impersonate to make it seem less obvious you use curl"
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
# Make sure the data directory exists
|
||||
|
||||
Reference in New Issue
Block a user