bin/setup-hg-git@272ba799a19e
bin/setup-hg-git
Wed, 16 Jun 2021 12:21:26 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 16 Jun 2021 12:21:26 -0500
- changeset 910
- 272ba799a19e
- parent 892
-
ede01ab376a7
- child 985
-
349ea9f736b9
- permissions
- -rwxr-xr-x
perl syntax fixes maybe
#!/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