From 453ece11323f34aca8288c288aced4cc2142b428 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 18 Apr 2018 17:13:56 +0800 Subject: git: Update git shell commands; add git-cmds tag --- roles/git/files/git-shell-commands/list | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roles/git/files/git-shell-commands/list') diff --git a/roles/git/files/git-shell-commands/list b/roles/git/files/git-shell-commands/list index 2977541..47e64e1 100644 --- a/roles/git/files/git-shell-commands/list +++ b/roles/git/files/git-shell-commands/list @@ -8,10 +8,10 @@ . ${HOME}/vars.conf -for repo in $(ls -d *.git); do +for repo in $(ls -d ${HOME}/*.git); do is_bare_repo=$(git --git-dir="${repo}" rev-parse --is-bare-repository) if [ "${is_bare_repo}" = "true" ]; then - echo "* ${repo}" + echo "* $(basename ${repo})" if [ -e "${PUBLIC}/${repo}" ]; then echo " [public]" fi -- cgit v1.2.2