Mercurial > evolve
view tests/testlib/map-hg-rev.sh @ 5981:6ac544f0218f stable
tests: update to the current topic to prepare for the next patch
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Tue, 27 Jul 2021 03:00:09 +0300 |
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