summaryrefslogtreecommitdiff
path: root/plugins/repo/lib
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-08-02 23:46:36 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:13 -0600
commit8a3cca551e412d3bd5cfddc6aa73c4f97edb483f (patch)
treee037e51af44a70d19a86fc70ae2853d654e1147d /plugins/repo/lib
parentfd5bf0ecb44eaae6ab24773629bacf1797d180b6 (diff)
I can now check out from the repo!
Diffstat (limited to 'plugins/repo/lib')
-rw-r--r--plugins/repo/lib/stdio.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/repo/lib/stdio.sh b/plugins/repo/lib/stdio.sh
index f85b7fa..3207db8 100644
--- a/plugins/repo/lib/stdio.sh
+++ b/plugins/repo/lib/stdio.sh
@@ -11,18 +11,19 @@
verbose() {
if [ "$volume" == '-v' ]; then
- echo $@
+ echo $@ >> /dev/stderr
fi
}
out() {
if [ "$volume" != '-q' ]; then
- echo $@
+ echo $@ >> /dev/stderr
fi
}
warn () {
echo "$name: $1" >> /dev/stderr
+ echo "$name: $1" >> "$repo/../rvs.log"
}
fatal () {