##// END OF EJS Templates
sidedata: add a way of replacing an existing sidedata computer...
sidedata: add a way of replacing an existing sidedata computer This will be useful in a future patch to replace a sequential computer with a parallel computer. We only allow for explicit replacement, to force the users to think about overriding computers. Differential Revision: https://phab.mercurial-scm.org/D10358

File last commit:

r47498:68538348 default
r47846:81eb7091 default
Show More
common.sh
7 lines | 106 B | application/x-sh | BashLexer
mkcommit() {
name="$1"
shift
echo "$name" > "$name"
hg add "$name"
hg ci -m "$name" "$@"
}