bin/setup-rust

Fri, 05 Aug 2022 20:56:17 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 05 Aug 2022 20:56:17 -0500
changeset 997
9e1ec7624f59
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

Update for newer configs, use autostash

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