From a7cbd1112e1915edccb3de448aa095c30efd0795 Mon Sep 17 00:00:00 2001 From: thek4n Date: Thu, 12 Sep 2024 20:32:18 +0300 Subject: [PATCH] fix --- home/user/.config/zsh/plugin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home/user/.config/zsh/plugin b/home/user/.config/zsh/plugin index d533ae0..2365435 100644 --- a/home/user/.config/zsh/plugin +++ b/home/user/.config/zsh/plugin @@ -3,10 +3,9 @@ so () { } install_if_not_exists() { - PATH="${PATH}:/usr/bin" local path="$HOME/.config/zsh/plugins/$1" if [ ! -d "$path" ]; then - git clone "https://github.com/$1" "$path" + /usr/bin/git clone "https://github.com/$1" "$path" fi }