move all test metadata files to .yml format

for f in metadata/*.txt; do ../fdroid rewritemeta --to yml $(basename $f | sed 's,\.txt,,'); done
This commit is contained in:
Hans-Christoph Steiner 2020-06-09 22:01:31 +02:00
parent 3bf2d60bfa
commit b63e9e68c5
No known key found for this signature in database
GPG key ID: 3E177817BA1B9BFA
35 changed files with 1799 additions and 1433 deletions

View file

@ -115,7 +115,7 @@ public class RandomPackageNames {
for (File f : new File("/home/hans/code/fdroid/fdroiddata/metadata").listFiles()) {
String name = f.getName();
if (name.endsWith(".yml") || name.endsWith(".txt")) {
if (name.endsWith(".yml")) {
compare(name.substring(0, name.length() - 4));
}
}