From 2ef91fff2714113fab75709481e43e6e09ca1ad3 Mon Sep 17 00:00:00 2001 From: Sriharsha Chintalapani Date: Mon, 6 Dec 2021 21:01:30 -0800 Subject: [PATCH] Fix #1593: bootstrap_storage.sh not working (#1594) --- bootstrap/bootstrap_storage.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap/bootstrap_storage.sh b/bootstrap/bootstrap_storage.sh index 23c179c5213..6712c1b855d 100755 --- a/bootstrap/bootstrap_storage.sh +++ b/bootstrap/bootstrap_storage.sh @@ -36,8 +36,9 @@ fi TABLE_INITIALIZER_MAIN_CLASS=org.openmetadata.catalog.util.TablesInitializer LIBS_DIR="${BOOTSTRAP_DIR}"/../libs/ +echo $LIBS_DIR if [ -d "${LIBS_DIR}" ]; then - for file in "${LIB_DIR}"*.jar; + for file in "${LIBS_DIR}"*.jar; do CLASSPATH="$CLASSPATH":"$file" done