bin/setup-hg-git

Mon, 07 Mar 2022 23:11:41 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 07 Mar 2022 23:11:41 -0600
changeset 985
349ea9f736b9
parent 892
ede01ab376a7
permissions
-rwxr-xr-x

try to use the same python as hg automatically

#!/bin/bash
set -eu -o pipefail

hg --version >/dev/null

shebang="$(head -n 1 $(which hg) | sed 's/^#!//')"

if ! ($shebang -m pip -V) &>/dev/null; then
  curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py |
    $shebang - --user
fi

$shebang -m pip install --user --upgrade hg-git

if ! grep -qsw hggit ~/.hgext/hgrc; then
  printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc
fi

mercurial