groowt/web-view-components-compiler/makeLexerTest
2024-05-23 19:25:31 +02:00

11 lines
201 B
Bash
Executable File

#!/usr/bin/env bash
ARGS="-v -d src/test/lexer/tokens-files -s _tokens -e .txt"
if [ "$1" == "--debug" ]; then
shift
bin/tokenizeWvc --debug $ARGS "$@"
else
bin/tokenizeWvc $ARGS "$@"
fi