bin/setup-rust

Thu, 19 Dec 2019 04:45:15 +0000

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 19 Dec 2019 04:45:15 +0000
changeset 839
0beae3c33263
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

switch to pip-based install

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