bin/setup-hg-git

Tue, 14 Nov 2023 02:24:17 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 14 Nov 2023 02:24:17 -0500
changeset 1135
7a17b7825b5f
parent 985
349ea9f736b9
permissions
-rwxr-xr-x

switch fidget.nvim back to main

#!/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