Mercurial > evolve
view tests/testlib/update-hg-repo.sh @ 6692:cdf929e69cde mercurial-5.1
test-compat: merge mercurial-5.2 into mercurial-5.1
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Mon, 05 Feb 2024 15:19:51 -0300 |
parents | fc3ad54219d7 |
children |
line wrap: on
line source
#!/bin/sh # Clone or update core Mercurial repo at the provided path. Useful for CI # runners that don't have a shared repo setup, e.g. the shell runner that is # currently used for Windows CI. URL=https://mirror.octobus.net/hg if hg root -R "$1"; then hg pull -R "$1" "$URL" else rm -rf "$1" hg clone "$URL" "$1" fi