view tests/testlib/map-hg-rev.sh @ 6838:514babbbe282

topic: don't recreate stack, we already have it from before This looks like an issue with past merging of 2 separate functions into 1.
author Anton Shestakov <av6@dwimlabs.net>
date Sun, 25 Aug 2024 17:22:40 +0400
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