Fix unquoted variable in mkdir command - wrap $HOME/.local/bin in quotes

Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-06-04 13:59:21 +00:00
parent 4437772b06
commit da44498341

View File

@@ -10,7 +10,7 @@ mkdir -p "$XDG_CONFIG_HOME"
if [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then if [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
fi fi
mkdir -p $HOME/.local/bin mkdir -p "$HOME/.local/bin"
# workspace # workspace
# ----------------------------------------------------------------- # -----------------------------------------------------------------