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 if [ $# -eq 0 ]; then
echo "$path"; echo "$path";
else else
cd $path && exec "$@"; cd $path && eval "$@";
fi fi

View File

@@ -10,5 +10,5 @@ fi
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then
echo "$path"; echo "$path";
else else
cd $path && exec "$@"; cd $path && eval "$@";
fi fi