Skip to content
Snippets Groups Projects
Commit 9b38c15d authored by Carlos Tasada's avatar Carlos Tasada Committed by Michi Mutsuzaki
Browse files

gh-102 Minor fix so the classpath path separator is OS independent

parent bbaaf80e
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ database = sys.argv[2]
db_classname = DATABASES[database]
options = sys.argv[3:]
ycsb_command = ["java", "-cp", ":".join(find_jars(ycsb_home, database)), \
ycsb_command = ["java", "-cp", os.pathsep.join(find_jars(ycsb_home, database)), \
COMMANDS[sys.argv[1]]["main"], "-db", db_classname] + options
if command:
ycsb_command.append(command)
......
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