bin/setup-rust

Fri, 09 Sep 2022 12:30:20 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 09 Sep 2022 12:30:20 -0400
changeset 1001
0597cb8f2d07
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

Try to land with my bin first

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