bin/setup-hg-evolve

Tue, 07 Jan 2020 14:27:38 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 07 Jan 2020 14:27:38 -0600
changeset 847
3d460b026be9
parent 841
f5eaa175beb4
child 892
ede01ab376a7
permissions
-rwxr-xr-x

Better multipart, working tmpfile cleanup

#!/bin/bash
set -eu -o pipefail

if ! (command -v pip2 && pip2 -V) &>/dev/null; then
  curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py |
    python2 - --user
fi

pip2 install --user --upgrade hg-evolve

if ! grep -qsw evolve ~/.hgext/hgrc; then
  printf '[extensions]\nevolve =\n' >> ~/.hgext/hgrc
fi

if ! grep -qsw topic ~/.hgext/hgrc; then
  printf '[extensions]\ntopic =\n' >> ~/.hgext/hgrc
fi

mercurial