groowt/web-view-components-compiler/makeAstTest
2024-05-24 10:37:58 +02:00

11 lines
191 B
Bash
Executable File

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