mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
254 B
Bash
Executable file
8 lines
254 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source tools/common_funcs.sh
|
|
|
|
grep --text -v "Generated by Ddoc from" ${OUTPUT_BASE}.html > ${OUTPUT_BASE}.html.2
|
|
diff -up --strip-trailing-cr ${EXTRA_FILES}/${TEST_NAME}.html ${OUTPUT_BASE}.html.2
|
|
|
|
rm_retry ${OUTPUT_BASE}.html{,.2}
|