From da552e5efad9c62aa9b01137146db87ba76310f9 Mon Sep 17 00:00:00 2001 From: idl0r Date: Mon, 25 Oct 2010 18:48:23 +0000 Subject: [PATCH] Use >&2 instead of /dev/stderr. svn path=/trunk/gentoolkit-dev/; revision=823 --- src/ebump/ebump | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ebump/ebump b/src/ebump/ebump index 113e4b9..37c58f7 100755 --- a/src/ebump/ebump +++ b/src/ebump/ebump @@ -63,7 +63,7 @@ load_options() { # FIXME: remove this warning in 2-3 releases. if [ -n "${opt_add_cvs}" ]; then - echo "Warning: opt_add_cvs is deprecated, please use opt_add_vcs from now on!" >/dev/stderr + echo "Warning: opt_add_cvs is deprecated, please use opt_add_vcs from now on!" >&2 fi } @@ -213,7 +213,7 @@ process_ebuild() { if [ -d ${dn}/${bn} ] ; then if [ -e ${dn}/${newbn} ] ; then - echo "Directory ${dn}/${newbn} exists, not copying" > /dev/stderr + echo "Directory ${dn}/${newbn} exists, not copying" >&2 else cp -a ${dn}/${bn} ${dn}/${newbn} # uhm, is that necessary? @@ -371,8 +371,8 @@ done _vcs=$(get_vcs) if [ -z "${_vcs}" ]; then - echo "Warning: no cvs, git or svn repository found!" >/dev/stderr - echo "Changes can't be added to the VCS" >/dev/stderr + echo "Warning: no cvs, git or svn repository found!" >&2 + echo "Changes can't be added to the VCS" >&2 opt_add_vcs=n opt_delete_old=n fi -- 2.26.2