From da444983413925d0f52127d66db2e12e933b1507 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:59:21 +0000 Subject: [PATCH] Fix unquoted variable in mkdir command - wrap $HOME/.local/bin in quotes Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> --- files/home/.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/home/.profile b/files/home/.profile index ab48243..aacd3d9 100644 --- a/files/home/.profile +++ b/files/home/.profile @@ -10,7 +10,7 @@ mkdir -p "$XDG_CONFIG_HOME" if [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then export PATH="$HOME/.local/bin:$PATH" fi -mkdir -p $HOME/.local/bin +mkdir -p "$HOME/.local/bin" # workspace # -----------------------------------------------------------------