contrib/automation/hgautomation/windows.py
branchstable
changeset 42658 9e0f1c80cddb
parent 42651 24cd5b0ba5b3
child 42913 92593d72e10b
equal deleted inserted replaced
42657:e0cf09bc35ef 42658:9e0f1c80cddb
   174 
   174 
   175         args = [
   175         args = [
   176             'python2.7', hg_bin,
   176             'python2.7', hg_bin,
   177             '--config', 'ui.ssh=ssh -F %s' % ssh_config,
   177             '--config', 'ui.ssh=ssh -F %s' % ssh_config,
   178             '--config', 'ui.remotecmd=c:/hgdev/venv-bootstrap/Scripts/hg.exe',
   178             '--config', 'ui.remotecmd=c:/hgdev/venv-bootstrap/Scripts/hg.exe',
   179             'push', '-f', '-r', full_revision,
   179             # Also ensure .hgtags changes are present so auto version
       
   180             # calculation works.
       
   181             'push', '-f', '-r', full_revision, '-r', 'file(.hgtags)',
   180             'ssh://%s/c:/hgdev/src' % public_ip,
   182             'ssh://%s/c:/hgdev/src' % public_ip,
   181         ]
   183         ]
   182 
   184 
   183         res = subprocess.run(args, cwd=str(hg_repo), env=env)
   185         res = subprocess.run(args, cwd=str(hg_repo), env=env)
   184 
   186