X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/ed75afaad17884dcb3eb9b1f66ba45b7f4018dbb..80ebb8dcdf12f32873670c8adcdd8d49ca2c7b01:/vcsh?ds=sidebyside diff --git a/vcsh b/vcsh index fdfeb84..a578487 100755 --- a/vcsh +++ b/vcsh @@ -100,7 +100,7 @@ To continue, type 'Yes, do as I say'" for file in $files; do rm -f $file || info "could not delete '$file', continuing with deletion" done - rmdir "$GIT_DIR" || error "could not delete '$GIT_DIR'" + rm -r "$GIT_DIR" || error "could not delete '$GIT_DIR'" } enter() { @@ -117,6 +117,7 @@ git_dir_exists() { hook() { for hook in $VCSH_HOOK_D/$1* $VCSH_HOOK_D/$VCSH_REPO_NAME.$1*; do [ -x "$hook" ] || continue + info "executing '$hook'" "$hook" done }