Skip to content

Commit

Permalink
refactor: replace --summary with --raw
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Jan 27, 2025
1 parent 19930ae commit 2210f01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/tuner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function version() {

BASE_IRI=""
DEBUG=false
SUMMARY="node ${SCRIPT_PATH}/../lib/summarise-results.js"
SUMMARY="node ${SCRIPT_PATH}/../lib/summarise-results.js --summary"
PATHS=()
# USAGE: ./tuner.sh --debug --version ...paths
while [ $# -gt 0 ]; do
Expand All @@ -22,8 +22,8 @@ while [ $# -gt 0 ]; do
DEBUG=true
shift
;;
--summary)
SUMMARY="node ${SCRIPT_PATH}/../lib/summarise-results.js --summary"
--raw)
SUMMARY="node ${SCRIPT_PATH}/../lib/summarise-results.js"
shift
;;
--base-iri)
Expand Down

0 comments on commit 2210f01

Please sign in to comment.