view tests/testlib/map-hg-rev.sh @ 6150:453302ef7f79 stable

packaging: prepare evolve 10.5.0, topic 0.24.0, pullbundle 0.1.3
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 23 Feb 2022 18:01:54 +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