#!/bin/bash

if [ ! -f rust-init.sh ] ; then
    echo "Downloading rust-init.sh"
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rust-init.sh
    chmod a+x ./rust-init.sh
else
    echo "Already downloaded rust-init.sh"
fi


