X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/d6910eed1ad1ae786b997863ff133cac61e490c3..7f6ab9a128b7848186a9a36580011a97253f70c8:/vcsh diff --git a/vcsh b/vcsh index 86e88f0..c6ea395 100755 --- a/vcsh +++ b/vcsh @@ -22,9 +22,9 @@ help() { clone \\ [] Clone from an existing repository - help Display this help text delete Delete an existing repository enter Enter repository; spawn new instance of \$SHELL + help Display this help text init Initialize a new repository list List all repositories list-tracked List all files tracked by vcsh @@ -133,8 +133,8 @@ init() { } list() { - for i in "$VCSH_REPO_D"/*.git; do - echo $(basename "$i" .git) + for repo in "$VCSH_REPO_D"/*.git; do + [ -r "$repo" ] && echo $(basename "$repo" .git) done } @@ -298,5 +298,7 @@ done verbose "$VCSH_COMMAND begin" export VCSH_COMMAND=$(echo $VCSH_COMMAND | sed 's/-/_/g') +hook pre-command $VCSH_COMMAND +hook post-command verbose "$VCSH_COMMAND end, exiting"