Add option to specify exact binary in run-benchmarks.sh

This commit is contained in:
Ethan P 2020-10-05 15:42:00 -07:00
parent e3bc41dbe6
commit e26ec31463
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ for arg in "$@"; do
--system) BAT="bat" ;;
--debug) BAT="../../target/debug/bat" ;;
--release) BAT="../../target/release/bat" ;;
--bat=*) BAT="${arg:6}" ;;
esac
done