Skip to content

Commit

Permalink
Fix bug introduced by commit d0e78e2
Browse files Browse the repository at this point in the history
In commit d0e78e2, the argument `-f -` to IndexBuilderMain was
erroneously replaced by `-`. This is now reversed.
  • Loading branch information
Hannah Bast committed Oct 15, 2024
1 parent d935267 commit 466df71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "qlever"
description = "Script for using the QLever SPARQL engine."
version = "0.5.7"
version = "0.5.8"
authors = [
{ name = "Hannah Bast", email = "[email protected]" }
]
Expand Down
2 changes: 1 addition & 1 deletion src/qlever/commands/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def additional_arguments(self, subparser) -> None:
def execute(self, args) -> bool:
# Construct the command line.
index_cmd = (f"{args.cat_input_files} | {args.index_binary}"
f" -F {args.format} -"
f" -F {args.format} -f -"
f" -i {args.name}"
f" -s {args.name}.settings.json")
if args.only_pso_and_pos_permutations:
Expand Down

0 comments on commit 466df71

Please sign in to comment.