bin/setup-rust

Mon, 15 Aug 2022 12:03:06 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 15 Aug 2022 12:03:06 -0500
changeset 998
6e682b7355ba
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

fix for old vim version sticking around

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