Skip to content

rewrite all .txt with 'Auto Update Mode:None' (a-c)

As agreed between @IzzySoft @uniqx and I in today's meeting. This converts all .txt files to .yml that have Auto Update Mode:None:

for f in `grep --files-with-matches 'Auto Update Mode:None' metadata/*.txt |sed 's,^metadata/\(.*\)\.txt$,\1,'`; do echo $f; done >  /tmp/rewrite
fdroid rewritemeta --to yml `cat /tmp/rewrite`
for f in `cat /tmp/rewrite`; do git rm -f metadata/${f}.txt; git add metadata/${f}.yml; done
Edited by Hans-Christoph Steiner

Merge request reports