bin/setup-hg-evolve

Thu, 08 Jul 2021 12:58:18 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 08 Jul 2021 12:58:18 -0500
changeset 922
c43cb588aa41
parent 892
ede01ab376a7
child 985
349ea9f736b9
permissions
-rwxr-xr-x

gofumpt is a static dep of gopls, no need for the note to self

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

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

pip3 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