From 001ea8cac1eb61c8f0e29889ea05ab0af69546d8 Mon Sep 17 00:00:00 2001 From: Mozi <29089388+pzhlkj6612@users.noreply.github.com> Date: Thu, 5 Mar 2026 15:06:38 -0500 Subject: [PATCH] [readme] use tilde expansion instead of "$HOME" for consistency at least in this code block. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3180f73..8002801 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/.bash_env +ENV BASH_ENV ~/.bash_env RUN touch "${BASH_ENV}" RUN echo '. "${BASH_ENV}"' >> ~/.bashrc