mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
5 lines
229 B
Text
5 lines
229 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
find . -name \*.h -print0 | xargs -0 grep -l "^#error This file has been removed from the build" | xargs rm
|
||
|
|
find . -name \*.cpp -print0 | xargs -0 grep -l "^#error This file has been removed from the build" | xargs rm
|