This is an automated email from the ASF dual-hosted git repository. ddanielr pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new 0071ee070f Fix paste invocation to work with Mac OS X (#4152) 0071ee070f is described below commit 0071ee070f4bcb24f1de05c48b13ef69f8e03ff5 Author: kristapsdz-saic <99488923+kristapsdz-s...@users.noreply.github.com> AuthorDate: Mon Jan 22 06:46:31 2024 -0800 Fix paste invocation to work with Mac OS X (#4152) Changed from original to be off 2.1. References #4141 --- assemble/conf/accumulo-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assemble/conf/accumulo-env.sh b/assemble/conf/accumulo-env.sh index b87402fe9b..bcde6907be 100644 --- a/assemble/conf/accumulo-env.sh +++ b/assemble/conf/accumulo-env.sh @@ -61,7 +61,7 @@ if [[ -n $CLASSPATH ]]; then else CLASSPATH="${conf}" fi -ZK_JARS=$(find "$ZOOKEEPER_HOME/lib/" -maxdepth 1 -name '*.jar' -not -name '*slf4j*' -not -name '*log4j*' | paste -sd:) +ZK_JARS=$(find "$ZOOKEEPER_HOME/lib/" -maxdepth 1 -name '*.jar' -not -name '*slf4j*' -not -name '*log4j*' | paste -sd: -) # lib is set by calling script that sources this env file #shellcheck disable=SC2154 CLASSPATH="${CLASSPATH}:${lib}/*:${HADOOP_CONF_DIR}:${ZOOKEEPER_HOME}/*:${ZK_JARS}:${HADOOP_HOME}/share/hadoop/client/*"