contrib/automation/hgautomation/linux.py
branchstable
changeset 42684 9e0f1c80cddb
parent 42660 24cd5b0ba5b3
child 42694 6f7262fe671c
equal deleted inserted replaced
42682:e0cf09bc35ef 42684:9e0f1c80cddb
   483 
   483 
   484         args = [
   484         args = [
   485             'python2.7', str(hg_bin),
   485             'python2.7', str(hg_bin),
   486             '--config', 'ui.ssh=ssh -F %s' % ssh_config,
   486             '--config', 'ui.ssh=ssh -F %s' % ssh_config,
   487             '--config', 'ui.remotecmd=/hgdev/venv-bootstrap/bin/hg',
   487             '--config', 'ui.remotecmd=/hgdev/venv-bootstrap/bin/hg',
   488             'push', '-f', '-r', full_revision,
   488             # Also ensure .hgtags changes are present so auto version
       
   489             # calculation works.
       
   490             'push', '-f', '-r', full_revision, '-r', 'file(.hgtags)',
   489             'ssh://%s//hgwork/src' % public_ip,
   491             'ssh://%s//hgwork/src' % public_ip,
   490         ]
   492         ]
   491 
   493 
   492         res = subprocess.run(args, cwd=str(source_path), env=env)
   494         res = subprocess.run(args, cwd=str(source_path), env=env)
   493 
   495