fix: git-home, git-root eval

This commit is contained in:
eneller
2024-04-17 10:00:27 +02:00
parent 0bf29844d1
commit 562491d53a
2 changed files with 2 additions and 2 deletions

View File

@@ -7,5 +7,5 @@ path=$(git rev-parse --show-toplevel);
if [ $# -eq 0 ]; then
echo "$path";
else
cd $path && exec "$@";
cd $path && eval "$@";
fi