Skip to content
Snippets Groups Projects
Commit ced4306f authored by Govind Kamat's avatar Govind Kamat
Browse files

[scripts] Add only the conf directory for the relevant binding to the

classpath, rather than all of them.
parent dfd79c80
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ def usage():
def find_jars(dir, database):
jars = []
for (dirpath, dirnames, filenames) in os.walk(dir):
if dirpath.endswith("conf"):
if dirpath.endswith(os.path.join(database + "-binding", "conf")):
jars.append(dirpath)
for filename in filenames:
if filename.endswith(".jar") and \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment