bin/setup-hg-git@f1e5d30543ba
bin/setup-hg-git
Sun, 09 Jan 2022 14:57:39 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Sun, 09 Jan 2022 14:57:39 -0500
- changeset 965
- f1e5d30543ba
- parent 892
-
ede01ab376a7
- child 985
-
349ea9f736b9
- permissions
- -rwxr-xr-x
forget the minimal setup mode
#!/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