bin/setup-rust

Wed, 22 Sep 2021 16:34:57 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 22 Sep 2021 16:34:57 -0400
changeset 946
20c0492da189
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

Add sick "run anywhere ignoring bundler" hacks

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