summaryrefslogtreecommitdiff
path: root/manage
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2024-08-20 16:43:49 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-08-20 20:20:50 +0200
commit5c6b126d7f2bbd12c6944247068b49ec3a9b7dee (patch)
treef4163b69cb92deb3b753ce2c132f75fb5cef2157 /manage
parent799d72e3fd74fd0967a79f07bbf541ce7f0f3e84 (diff)
downloadsearxng-5c6b126d7f2bbd12c6944247068b49ec3a9b7dee.tar.gz
searxng-5c6b126d7f2bbd12c6944247068b49ec3a9b7dee.zip
[fix] debian/ubuntu python-is-python3
Closes: https://github.com/searxng/searxng/issues/3235 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'manage')
-rwxr-xr-xmanage2
1 files changed, 1 insertions, 1 deletions
diff --git a/manage b/manage
index 155a1f2dd..2a88a4c5c 100755
--- a/manage
+++ b/manage
@@ -233,7 +233,7 @@ gecko.driver() {
build_msg INSTALL "geckodriver already installed"
return
fi
- PLATFORM="$(python3 -c 'import platform; print(platform.system().lower(), platform.architecture()[0])')"
+ PLATFORM="$(python -c 'import platform; print(platform.system().lower(), platform.architecture()[0])')"
case "$PLATFORM" in
"linux 32bit" | "linux2 32bit") ARCH="linux32";;
"linux 64bit" | "linux2 64bit") ARCH="linux64";;