bin/setup-hg-git@c3a15b8c217c
bin/setup-hg-git
Sat, 03 Jul 2021 02:29:48 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Sat, 03 Jul 2021 02:29:48 -0500
- changeset 917
- c3a15b8c217c
- parent 892
-
ede01ab376a7
- child 985
-
349ea9f736b9
- permissions
- -rwxr-xr-x
Fix colors
#!/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-git
if ! grep -qsw hggit ~/.hgext/hgrc; then
printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc
fi