equal
deleted
inserted
replaced
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 |