ACCUMULO-1873 follow symlinks
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/e3266410 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/e3266410 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/e3266410 Branch: refs/heads/1.6.0-SNAPSHOT Commit: e326641039942a25114490c0291c3386c4354d73 Parents: 0927eb8 Author: Eric Newton <eric.new...@gmail.com> Authored: Tue Nov 19 12:58:00 2013 -0500 Committer: Eric Newton <eric.new...@gmail.com> Committed: Tue Nov 19 12:58:00 2013 -0500 ---------------------------------------------------------------------- bin/start-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/e3266410/bin/start-all.sh ---------------------------------------------------------------------- diff --git a/bin/start-all.sh b/bin/start-all.sh index 4e45e4c..e0d4b36 100755 --- a/bin/start-all.sh +++ b/bin/start-all.sh @@ -39,7 +39,7 @@ if [ ! -d $ZOOKEEPER_HOME ]; then exit 1 fi -ZOOKEEPER_VERSION=$(find $ZOOKEEPER_HOME -maxdepth 1 -name "zookeeper-[0-9]*.jar" | head -1) +ZOOKEEPER_VERSION=$(find -L $ZOOKEEPER_HOME -maxdepth 1 -name "zookeeper-[0-9]*.jar" | head -1) if [ -z "$ZOOKEEPER_VERSION" ]; then echo "A Zookeeper JAR was not found in $ZOOKEEPER_HOME." echo "Please check ZOOKEEPER_HOME, either globally or in accumulo-env.sh."