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