11 lines
191 B
Bash
Executable File
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
|