bin/setup-rust

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 723
9d9fecc3ea30
permissions
-rwxr-xr-x

try to use the same python as hg automatically

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

if rustup update; then
  exit
fi

curl https://sh.rustup.rs -sSf | sh
source ~/.cargo/env
rustup component add rls rustfmt

mercurial