From 8992e36609739e2359f39f5d8464867efbb17ba0 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Sat, 19 Jul 2025 08:13:32 +0300 Subject: [PATCH] Fix Debian dependency check for non-English locales --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 1242367..4bc0475 100755 --- a/install.sh +++ b/install.sh @@ -128,7 +128,7 @@ tor_deps_install () deb_deps_check () { - apt-cache policy "${deb_deps[@]}" | grep "Installed.*none" + LANG=C apt-cache policy "${deb_deps[@]}" | grep "Installed.*none" } deb_deps_install ()