diff options
Diffstat (limited to 'update-creator.sh')
-rwxr-xr-x | update-creator.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/update-creator.sh b/update-creator.sh index b8cfd550..6acb8522 100755 --- a/update-creator.sh +++ b/update-creator.sh @@ -1,9 +1,9 @@ #!/bin/sh -find -path ./libs -prune -path ./CMake -prune \ - -o -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 |