bin/setup-hg-git@c39d655f455c
bin/setup-hg-git
Mon, 03 Feb 2020 08:46:42 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 03 Feb 2020 08:46:42 -0600
- changeset 848
- c39d655f455c
- parent 839
-
0beae3c33263
- child 892
-
ede01ab376a7
- permissions
- -rwxr-xr-x
drop FancyPrompt
#!/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-git
if ! grep -qsw hggit ~/.hgext/hgrc; then
printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc
fi