mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
10 lines
319 B
Bash
Executable file
10 lines
319 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
grep -v "\"file\" : " ${RESULTS_DIR}/compilable/json.out | grep -v "\"offset\" : " > ${RESULTS_DIR}/compilable/json.out.2
|
|
diff --strip-trailing-cr compilable/extra-files/json.out ${RESULTS_DIR}/compilable/json.out.2
|
|
if [ $? -ne 0 ]; then
|
|
exit 1;
|
|
fi
|
|
|
|
rm ${RESULTS_DIR}/compilable/json.out{,.2}
|
|
|