Fix exec perm

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2021-12-03 18:20:33 +00:00
parent 57ee208407
commit 09248c19cd
13 changed files with 6 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ lt() {
git() {
if [ "$1" = "take" ]; then # Git clone then cd into new directory
_git clone $2
cd $(basename $2 | sed 's/\.git$//')
cd $(basename -s .git $2)
elif [ "$1" = "commit" ]; then # Sign all commits
shift
_git commit -s $@