Skip to content

Commit

Permalink
brianfrankcoopergh-102 Minor fix so the classpath path separator is O…
Browse files Browse the repository at this point in the history
…S independent
  • Loading branch information
ctasada authored and Michi Mutsuzaki committed Dec 16, 2012
1 parent bbaaf80 commit 9b38c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ycsb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9b38c15

Please sign in to comment.