@@ -34,6 +34,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_bzr() {
+ if [ -z "${quiet}" ]; then
+ echo ${BZR} "${@}"
+ fi
eval ${BZR} "${@}"
}
@@ -39,6 +39,9 @@ shift $((OPTIND-1)) # Get rid of our options
# ). Since nobody sane will put large code bases in CVS, a timeout of
# 10 minutes should do the trick.
_cvs() {
+ if [ -z "${quiet}" ]; then
+ echo timeout 10m ${CVS} "${@}"
+ fi
eval timeout 10m ${CVS} "${@}"
}
@@ -36,6 +36,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_localfiles() {
+ if [ -n "${verbose}" ]; then
+ echo ${LOCALFILES} "${@}"
+ fi
eval ${LOCALFILES} "${@}"
}
@@ -79,6 +79,9 @@ trap _on_error ERR
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_git() {
+ if [ -z "${quiet}" ]; then
+ echo GIT_DIR="${git_cache}/.git" ${GIT} "${@}"
+ fi
eval GIT_DIR="${git_cache}/.git" ${GIT} "${@}"
}
@@ -33,6 +33,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_hg() {
+ if [ -z "${quiet}" ]; then
+ echo ${HG} "${@}"
+ fi
eval ${HG} "${@}"
}
@@ -31,6 +31,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_scp() {
+ if [ -z "${quiet}" ]; then
+ echo ${SCP} "${@}"
+ fi
eval ${SCP} "${@}"
}
@@ -40,6 +40,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_svn() {
+ if [ -z "${quiet}" ]; then
+ echo ${SVN} "${@}"
+ fi
eval ${SVN} "${@}"
}
@@ -33,6 +33,9 @@ shift $((OPTIND-1)) # Get rid of our options
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_wget() {
+ if [ -z "${quiet}" ]; then
+ echo ${WGET} "${@}"
+ fi
eval ${WGET} "${@}"
}