Multiple updates

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-03-17 23:22:54 +01:00
parent c7b67a084b
commit dac6042f52
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
15 changed files with 66 additions and 51 deletions

View file

@ -35,16 +35,16 @@ RUST_COMPONENTS=(
#######################################
# Main code
#######################################
print_header "Setup notes directory"
print_section "Setup notes directory"
if [ ! -d "${HOME}/Notes" ]
then
git clone gl:notes "${HOME}/Notes"
fi
print_header "Installing global npm packages"
print_section "Installing global npm packages"
npm i -g "${NPM_PACKAGES[@]}"
print_header "Install Rust toolchain and components"
print_section "Install Rust toolchain and components"
rustup toolchain install beta
rustup default beta
rustup component add "${RUST_COMPONENTS[@]}"