From 2dd1a8003611a622cc886a238e0e89844a74b58a Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sun, 21 Sep 2025 01:30:56 +0200 Subject: [PATCH] git:cow: Fix parameter quoting The parameter expansion outside of the single quotes (or inside, however you want to see it) was not quoted. --- .config/zsh/autoload/git/git-checkout-worktree | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/autoload/git/git-checkout-worktree b/.config/zsh/autoload/git/git-checkout-worktree index 817d33f..5203680 100755 --- a/.config/zsh/autoload/git/git-checkout-worktree +++ b/.config/zsh/autoload/git/git-checkout-worktree @@ -49,7 +49,7 @@ fi trap ' errc=$? - <&2 printf "Exiting abnormally. Check and possibly remove \"%s\" manually.\n" "'$WORKTREE_PATH'" + <&2 printf "Exiting abnormally. Check and possibly remove \"%s\" manually.\n" "'"$WORKTREE_PATH"'" return $errc ' INT QUIT TERM EXIT