bin/setup-hg-git@2d69c23ef58b
bin/setup-hg-git
Fri, 24 Apr 2020 14:15:37 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Fri, 24 Apr 2020 14:15:37 -0500
- changeset 858
- 2d69c23ef58b
- parent 839
-
0beae3c33263
- child 892
-
ede01ab376a7
- permissions
- -rwxr-xr-x
no automatic autosquash
#!/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