X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/5b9c4bbfd2b00c3ebffb9ec3fd5dc71bbe4574d1..2b7348c58c6a4308b3f1d551b4884b1f5d5ff2d8:/vcsh diff --git a/vcsh b/vcsh index 2b7528f..58b5744 100755 --- a/vcsh +++ b/vcsh @@ -16,7 +16,7 @@ [ -n "$VCSH_DEBUG" ] && set -vx SELF=$(basename $0) -VERSION='1.20131214' +VERSION='1.20131214.git-HEAD' fatal() { echo "$SELF: fatal: $1" >&2 @@ -247,7 +247,7 @@ list_tracked_by() { pull() { hook pre-pull for VCSH_REPO_NAME in $(list); do - echo -n "$VCSH_REPO_NAME: " + printf "$VCSH_REPO_NAME: " export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" use git pull @@ -259,7 +259,7 @@ pull() { push() { hook pre-push for VCSH_REPO_NAME in $(list); do - echo -n "$VCSH_REPO_NAME: " + printf "$VCSH_REPO_NAME: " export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" use git push