bin/setup-rust

Fri, 09 Jul 2021 01:08:33 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 09 Jul 2021 01:08:33 -0500
changeset 927
6cdcce4f0abd
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

remove old dependency

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