view tests/testlib/common.sh @ 48957:edab75a4c1da

hg: always import hgdemandimport The deleted if condition is always true now that we dropped Python 2 and 3.5. Differential Revision: https://phab.mercurial-scm.org/D12361
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 08 Mar 2022 19:08:35 -0800
parents 685383486d0a
children
line wrap: on
line source

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