##// END OF EJS Templates
automation: push changes affecting .hgtags...
Gregory Szorc -
r42911:9e0f1c80 stable
parent child Browse files
Show More
@@ -485,7 +485,9 b' def synchronize_hg(source_path: pathlib.'
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
@@ -176,7 +176,9 b' def synchronize_hg(hg_repo: pathlib.Path'
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
General Comments 0
You need to be logged in to leave comments. Login now