Skip to content

Commit

Permalink
Fix arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Nov 28, 2023
1 parent 300c71d commit ffac67e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiments/15-e2e-scenarios-v2/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -306,11 +306,11 @@ function extract_named_arguments() {
schema_name=${phys_arg:14}
fi

if [[ $dataset_type =~ --dataset-type=.+ ]]; then
if [[ $phys_arg =~ --dataset-type=.+ ]]; then
dataset_type=${phys_arg:15}
fi

if [[ $dataset_type =~ --query-sequence-file=.+ ]]; then
if [[ $phys_arg =~ --query-sequence-file=.+ ]]; then
query_sequence_file=${phys_arg:22}
fi
done
Expand Down

0 comments on commit ffac67e

Please sign in to comment.