We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c1b014 commit 8991b6eCopy full SHA for 8991b6e
1 file changed
calm/calm.py
@@ -645,6 +645,11 @@ def do_output(args, state):
645
keys = ' '.join(['-u' + k for k in args.keys])
646
utils.system('/usr/bin/gpg ' + keys + ' --batch --yes -b ' + extfile)
647
648
+ # update a marker file indicating when repository was updated
649
+ # (for the benefit of quickly checking of mirrors are up to date)
650
+ if update_json:
651
+ utils.touch(os.path.join(args.rel_area, '.last-updated'))
652
+
653
# add information from repology to packages
654
repology.annotate_packages(args, state.packages)
655
0 commit comments