X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/b9cd22b813c1e45ddf154df85c83aeeed44dd076..d11b6c56ff9e7de8cbfc24087cb99598c7c43aa0:/vcsh diff --git a/vcsh b/vcsh index b962c2a..172ffd2 100755 --- a/vcsh +++ b/vcsh @@ -212,12 +212,14 @@ hook() { } init() { + hook pre-init [ ! -e "$GIT_DIR" ] || fatal "'$GIT_DIR' exists" 10 export GIT_WORK_TREE="$VCSH_BASE" mkdir -p "$GIT_WORK_TREE" || fatal "could not create '$GIT_WORK_TREE'" 50 cd "$GIT_WORK_TREE" || fatal "could not enter '$GIT_WORK_TREE'" 11 git init upgrade + hook post-init } list() { @@ -435,7 +437,7 @@ check_dir() { if [ -e "$check_directory" ]; then fatal "'$check_directory' exists but is not a directory" 13 else - info "attempting to create '$check_directory'" + verbose "attempting to create '$check_directory'" mkdir -p "$check_directory" || fatal "could not create '$check_directory'" 50 fi fi