Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

fix(scripts): fix zk version in zk scripts #705

Merged
merged 2 commits into from
Dec 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/linux/clear_zk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi

cd $INSTALL_DIR

ZOOKEEPER_HOME=`pwd`/zookeeper-3.4.6
ZOOKEEPER_HOME=`pwd`/zookeeper-3.4.10

if [ -d "$ZOOKEEPER_HOME" ]
then
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/start_zk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [ ! -f ${ZOOKEEPER_PKG} ]; then
exit 1
fi

if [ ! -d zookeeper-3.4.6 ]; then
if [ ! -d zookeeper-3.4.10 ]; then
echo "Decompressing zookeeper..."
cp ${ZOOKEEPER_PKG} .
tar xf zookeeper-3.4.10.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/stop_zk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi

cd $INSTALL_DIR

ZOOKEEPER_HOME=`pwd`/zookeeper-3.4.6
ZOOKEEPER_HOME=`pwd`/zookeeper-3.4.10

if [ -d "$ZOOKEEPER_HOME" ]
then
Expand Down