bin/setup-rust

Tue, 05 Mar 2019 17:55:51 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 05 Mar 2019 17:55:51 -0600
changeset 741
269a3e8c8adc
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

another fix

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