Skip to content

Commit

Permalink
fixed missing space windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mtygesen committed Oct 20, 2024
1 parent 0b8078a commit f545f8b
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 f545f8b

Please sign in to comment.