From 3b8ce6da682ecb37ae51d86136a45c25ea5cd8e0 Mon Sep 17 00:00:00 2001 From: Ed Ilyin Date: Thu, 30 Dec 2021 20:27:57 +0000 Subject: [PATCH] fixes plugins var --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f9e0823..e2348e1 100755 --- a/install.sh +++ b/install.sh @@ -44,7 +44,7 @@ user_rc_file="${user_rc_path}/.zshrc" plugin() { sed -i -E "s/^(plugins=\(.+)\)$/\1 $1)/" "${user_rc_file}"; } plug() { - git clone "https://github.com/$1/$2.git" "${oh_my_install_dir}/$2" 2>&1 + git clone "https://github.com/$1/$2.git" "${oh_my_plugins_dir}/$2" 2>&1 plugin $2 }