Skip to content

Instantly share code, notes, and snippets.

View hnrq's full-sized avatar
👋
How's it going?

Henrique Ramos hnrq

👋
How's it going?
View GitHub Profile
@hnrq
hnrq / setup_veloren_server.sh
Created October 25, 2021 00:37
Setup Veloren server
#!/bin/bash
setup_rust(){
if [ ! -d "$HOME/.cargo/bin" ]; then
echo "Rust not installed. Installing..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
fi
export PATH="$HOME/.cargo/bin:$PATH"
}