You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by ct...@apache.org on 2019/09/19 19:46:47 UTC

[fluo-uno] branch master updated: Redirect message to prevent bash ERROR (#230)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-uno.git


The following commit(s) were added to refs/heads/master by this push:
     new 8b25ea8  Redirect message to prevent bash ERROR (#230)
8b25ea8 is described below

commit 8b25ea85d50733f0ca56d63cbffd4cdf6182ae73
Author: Mike Miller <mm...@apache.org>
AuthorDate: Thu Sep 19 15:46:43 2019 -0400

    Redirect message to prevent bash ERROR (#230)
---
 conf/uno.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/conf/uno.conf b/conf/uno.conf
index 7f94fb2..3784eda 100644
--- a/conf/uno.conf
+++ b/conf/uno.conf
@@ -95,17 +95,17 @@ fi
 # consider submitting an issue or PR.
 
 if [[ "${HADOOP_VERSION}" = 1.* ]]; then
-   echo "ERROR from uno.conf : Hadoop 1.x is not supported"
+   echo "ERROR from uno.conf : Hadoop 1.x is not supported" 1>&2
    exit 1
 fi
 
 if [[ -z "$ACCUMULO_REPO" && "${ACCUMULO_VERSION}" = 1.* && ! "${HADOOP_VERSION}" = 2.* ]]; then
-   echo "ERROR from uno.conf : When using Accumulo 1.x, expect Hadoop 2.x not $HADOOP_VERSION"
+   echo "ERROR from uno.conf : When using Accumulo 1.x, expect Hadoop 2.x not $HADOOP_VERSION" 1>&2
    exit 1
 fi
 
 if [[ "${ACCUMULO_VERSION}" = 2.* && ! "${HADOOP_VERSION}" = 3.* ]]; then
-  echo "ERROR from uno.conf : When using Accumulo 2.x, expect Hadoop 3.x not $HADOOP_VERSION"
+  echo "ERROR from uno.conf : When using Accumulo 2.x, expect Hadoop 3.x not $HADOOP_VERSION" 1>&2
   exit 1
 fi