1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-04 18:20:18 +00:00

install: add mkdir -p for zsh plugins dir

This commit is contained in:
Luna 2025-03-07 23:50:26 +01:00
parent 8c345571ac
commit bb8ec54aea

View file

@ -102,7 +102,7 @@ done
for plugin in $=plugins_git; do
name="${plugin/*\//}"
mkdir -p "$plugins_dir"
if [ ! -d "$plugins_dir/$name" ]; then
echo "[*] installing $name locally"
git clone --depth=1 "$plugin" "$plugins_dir/$name"