mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-25 21:00:02 +03:00
7 lines
93 B
Bash
Executable file
7 lines
93 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "${DC:-}" ]; then
|
|
DC=dmd
|
|
fi
|
|
|
|
DC="$DC" "$DC" -run generate_tests.d "$1"
|