From a35b9deddd25ed62823539926a24929fc71d0cf2 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 14 Aug 2008 20:23:49 +0000 Subject: echo with_ais_group errors to stderr. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@686021 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/tests/start_cluster | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qpid/cpp/src/tests/start_cluster b/qpid/cpp/src/tests/start_cluster index e399d213dc..524490f057 100755 --- a/qpid/cpp/src/tests/start_cluster +++ b/qpid/cpp/src/tests/start_cluster @@ -5,7 +5,7 @@ echo $1 | grep '^[0-9][0-9]*$' > /dev/null || { echo "Usage: $0 cluster-size [op # Execute command with the ais group set. with_ais_group() { - id -nG | grep '\' >/dev/null || { echo "You are not a member of the ais group."; exit 1; } + id -nG | grep '\' >/dev/null || { echo "You are not a member of the ais group." 1>&2; exit 1; } echo $* | newgrp ais } -- cgit v1.2.1