From 40679f71262585050b868a20b7b3efd5e6520a69 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 5 Oct 2022 21:29:28 +0200 Subject: [PATCH] pmb.chroot.root: order env vars alphabetically (MR 2209) --- pmb/chroot/root.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/chroot/root.py b/pmb/chroot/root.py index 5f0f240d..51920c31 100644 --- a/pmb/chroot/root.py +++ b/pmb/chroot/root.py @@ -55,9 +55,9 @@ def root(args, cmd, suffix="native", working_dir="/", output="log", # Merge env with defaults into env_all env_all = {"CHARSET": "UTF-8", - "LANG": "UTF-8", "HISTFILE": "~/.ash_history", "HOME": "/root", + "LANG": "UTF-8", "PATH": pmb.config.chroot_path, "SHELL": "/bin/ash", "TERM": "xterm"}