Skip to content

Commit

Permalink
Fix benchmarks commands (#274) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
iamazeem authored Nov 9, 2024
1 parent f5944c2 commit 225d52e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/ci-run-benchmarks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ for TOOL in zsv xsv tsv; do
if [ "$TOOL" = "zsv" ]; then
CMD="$TOOLS_DIR/zsv count"
elif [ "$TOOL" = "xsv" ]; then
CMD="$TOOLS_DIR/xsv count"
CMD="$TOOLS_DIR/xsv count --no-headers"
elif [ "$TOOL" = "tsv" ]; then
CMD="$TOOLS_DIR/number-lines -d,"
CMD="$TOOLS_DIR/tsv-summarize --count -d,"
fi

I=0
Expand All @@ -141,7 +141,7 @@ for TOOL in zsv xsv tsv; do
elif [ "$TOOL" = "xsv" ]; then
CMD="$TOOLS_DIR/xsv select 2,1,3-7"
elif [ "$TOOL" = "tsv" ]; then
CMD="$TOOLS_DIR/tsv-select -d, -f 1-7"
CMD="$TOOLS_DIR/tsv-select -d, -f 2,1,3-7"
fi

I=0
Expand Down

0 comments on commit 225d52e

Please sign in to comment.