bin/setup-hg-git@0beae3c33263
bin/setup-hg-git
Thu, 19 Dec 2019 04:45:15 +0000
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Thu, 19 Dec 2019 04:45:15 +0000
- changeset 839
- 0beae3c33263
- parent 592
-
d20033330f55
- child 892
-
ede01ab376a7
- permissions
- -rwxr-xr-x
switch to pip-based install
#!/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