tests/testlib/obsmarker-common.sh
author Matt Harbison <matt_harbison@yahoo.com>
Mon, 03 Feb 2020 20:12:47 -0500
branchstable
changeset 44242 847e582f3cc9
parent 42968 86f39a89b63e
permissions -rw-r--r--
packaging: make the path to Win32 requirements absolute when building WiX Otherwise this broke automation when not launched from `contrib/packaging`. Differential Revision: https://phab.mercurial-scm.org/D8068

mkcommit() {
   name="$1"
   shift
   echo "$name" > "$name"
   hg add "$name"
   hg ci -m "$name" "$@"
}

getid() {
   hg log --hidden --template '{node}\n' --rev "$1"
}

cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF