From 9189378633184b6b34f5e8c51d3491e2dfd475ce Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 3 Jan 2024 09:32:25 +0000 Subject: [PATCH] profile --- ci/ciimage/build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/ciimage/build.py b/ci/ciimage/build.py index b9d318158411..c37292383888 100755 --- a/ci/ciimage/build.py +++ b/ci/ciimage/build.py @@ -78,6 +78,10 @@ def gen_bashrc(self) -> None: if [ -f "$HOME/.cargo/env" ]; then source "$HOME/.cargo/env" fi + + if [ -f /etc/profile ]; then + source /etc/profile + fi ''' out_file.write_text(out_data, encoding='utf-8')