diff options
Diffstat (limited to 'update-creator.sh')
-rwxr-xr-x | update-creator.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/update-creator.sh b/update-creator.sh index edda5613..6acb8522 100755 --- a/update-creator.sh +++ b/update-creator.sh @@ -1,8 +1,9 @@ #!/bin/sh -find -name \*.cpp \ - -o -name \*.h \ - -o -name \*.am \ - -o -name \*.txt \ - -o -name \*.xml \ - -o -name \*.mana \ +find \( -name \*.cpp \ + -o -name \*.h \ + -o -name \*.txt \ + -o -name \*.xml \ + -o -name \*.mana \ + \) ! -wholename \*/CMakeFiles/\* \ + ! -name CMakeCache.txt \ | sort > mana.files |