From 3bd628a7b745449ccb3d9110d84e8fe35ce4246a Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 11 Jun 2026 10:59:26 -0400 Subject: [PATCH] fix android env setting --- early-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index b9bc521..ff3f6cd 100644 --- a/early-init.el +++ b/early-init.el @@ -20,7 +20,7 @@ (when (eq system-type 'android) (let ((termux-path "/data/data/com.termux/files/usr/bin")) - (setenv "PATH" (format "%s:%s" termux-path)) + (setenv "PATH" (format "%s:%s" termux-path (getenv "PATH"))) (push termux-path exec-path))) (setq inhibit-startup-screen t -- 2.39.5