Mercurial > evolve
view tests/testlib/map-hg-rev.sh @ 6008:4c208bb90c5b stable
changelog: mention compatibility with Mercurial 5.9
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 13 Aug 2021 19:07:58 +0200 |
parents | 4f3c87584a4a |
children |
line wrap: on
line source
#!/bin/sh set -eu case $1 in default) echo default ;; mercurial-*) exp=$(echo "$1" | cut -d- -f2 | sed 's#\.#\\.#g') echo 'max(tag("re:^'"$exp"'"))' ;; *) echo stable ;; esac