diff options
Diffstat (limited to 'librewolf/debian/l10n_revs.py')
-rw-r--r-- | librewolf/debian/l10n_revs.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/librewolf/debian/l10n_revs.py b/librewolf/debian/l10n_revs.py new file mode 100644 index 0000000..19fc30d --- /dev/null +++ b/librewolf/debian/l10n_revs.py @@ -0,0 +1,8 @@ +import json +import sys + + +data = json.load(sys.stdin) +for k, v in sorted(data.items()): + if 'linux64' in v['platforms']: + print('{}:{}'.format(k, v['revision'])) |