bin/setup-rust

Thu, 25 Apr 2019 21:58:05 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 25 Apr 2019 21:58:05 -0400
changeset 758
949b2d4df5fd
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

whoops, LANG confuses things later

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