From b0f82ac1b25253ff6559c04ea6d8b55737b061c3 Mon Sep 17 00:00:00 2001 From: Mozi <29089388+pzhlkj6612@users.noreply.github.com> Date: Thu, 5 Mar 2026 05:42:57 -0500 Subject: [PATCH] [readme] use "$HOME" instead of hardcoded "/home/user" For now, only "test/fast/Unit tests/nvm_change_path" uses "/home/user". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69ed985..3180f73 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ When invoking bash as a non-interactive shell, like in a Docker container, none SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Create a script file sourced by both interactive and non-interactive bash shells -ENV BASH_ENV /home/user/.bash_env +ENV BASH_ENV $HOME/.bash_env RUN touch "${BASH_ENV}" RUN echo '. "${BASH_ENV}"' >> ~/.bashrc