Mon, 14 Sep 2020 14:47:53 -0500
Remove old config
#!/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