1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-01 20:59:26 +00:00

git: Optimize scripts for git helper functions

Optimize git internal calls and adjustment git helper functions to use
more idiomatic Zsh conventions avoiding external calls.
This commit is contained in:
Indrajit Raychaudhuri
2021-05-19 19:54:57 -05:00
committed by Indrajit Raychaudhuri
parent efebe3efec
commit a3643f124e
6 changed files with 14 additions and 14 deletions

View File

@ -26,7 +26,7 @@ if [[ -z "$url" ]]; then
return 1
fi
mkdir -p "${dst:h}"
mkdir -p "$dst:h"
git-submodule-remove "$src"
command git submodule add "$url" "$dst"