Remove useless files being scanned for translations

Don't show in changelog
This commit is contained in:
Florian Rival
2022-08-16 16:51:30 +02:00
parent f61ef1be2e
commit 4fa1fbd5e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ dir ..\GDJS\GDJS\*.cpp /L /B /S |find /v /i "\Dialogs\" > %TEMP%\listfile.txt
dir ..\GDJS\GDJS\*.h /L /B /S |find /v /i "\Dialogs\" >> %TEMP%\listfile.txt
dir ..\Extensions\*.cpp /L /B /S >> %TEMP%\listfile.txt
dir ..\Extensions\*.h /L /B /S >> %TEMP%\listfile.txt
dir ..\Extensions\*.js /L /B /S |find /v /i "box2d.js" |find /v /i "\bondage.js" |find /v /i "\ExampleJsExtension" >> %TEMP%\listfile.txt
dir ..\Extensions\*.js /L /B /S |find /v /i ".umd.js" |find /v /i ".min.js" |find /v /i ".benchmark.js" |find /v /i ".spec.js" |find /v /i "box2d.js" |find /v /i "\bondage.js" |find /v /i "\node_modules" |find /v /i "\ExampleJsExtension" >> %TEMP%\listfile.txt
dir ..\Core\GDCore\*.cpp /L /B /S |find /v /i "\Dialogs\" >> %TEMP%\listfile.txt
dir ..\Core\GDCore\*.h /L /B /S |find /v /i "\Dialogs\" >> %TEMP%\listfile.txt
+1 -1
View File
@@ -8,7 +8,7 @@ find ../GDJS/GDJS/ -name '*.cpp' | grep -v '/Dialogs/' > /tmp/listfile.txt
find ../GDJS/GDJS/ -name '*.h' -o -name "*.hpp" | grep -v '/Dialogs/' >> /tmp/listfile.txt
find ../Extensions/ -name '*.cpp' >> /tmp/listfile.txt
find ../Extensions/ -name '*.h' -o -name "*.hpp" >> /tmp/listfile.txt
find ../Extensions/ -name '*.js' | grep -v 'box2d.js' | grep -v '/bondage.js' | grep -v '/ExampleJsExtension' >> /tmp/listfile.txt
find ../Extensions/ -name '*.js' | grep -v '.umd.js' | grep -v '.min.js' | grep -v '.benchmark.js' | grep -v '.spec.js' | grep -v 'box2d.js' | grep -v '/node_modules' | grep -v '/bondage.js' | grep -v '/ExampleJsExtension' >> /tmp/listfile.txt
find ../Core/GDCore -name '*.cpp' | grep -v '/Dialogs/' >> /tmp/listfile.txt
find ../Core/GDCore -name '*.h' -o -name "*.hpp" | grep -v '/Dialogs/' >> /tmp/listfile.txt