--- a/contrib/automation/hgautomation/linux.py Fri Jun 21 03:50:40 2019 +0200
+++ b/contrib/automation/hgautomation/linux.py Sat Aug 03 12:13:51 2019 -0700
@@ -485,7 +485,9 @@
'python2.7', str(hg_bin),
'--config', 'ui.ssh=ssh -F %s' % ssh_config,
'--config', 'ui.remotecmd=/hgdev/venv-bootstrap/bin/hg',
- 'push', '-f', '-r', full_revision,
+ # Also ensure .hgtags changes are present so auto version
+ # calculation works.
+ 'push', '-f', '-r', full_revision, '-r', 'file(.hgtags)',
'ssh://%s//hgwork/src' % public_ip,
]