bin/setup-rust

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

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 09 Sep 2022 12:30:42 -0400
changeset 1002
8284b9cac608
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

Add age limit reinstall check

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