Skip to content

Commit

Permalink
Fixed space missing windows - fix 2084582 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
srba authored Oct 21, 2024
2 parents 0b8078a + f545f8b commit 3f84132
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ private String createArgumentString(String modelFile, String queryFile, Verifica

private String createArgumentString(String modelFile, String queryFile, String options) {
if (Platform.isWindows()) {
return options + "\"" + modelFile + "\" \"" + queryFile + "\"";
return options + " \"" + modelFile + "\" \"" + queryFile + "\"";
}

return options + ' ' + modelFile + ' ' + queryFile;
Expand Down

0 comments on commit 3f84132

Please sign in to comment.